Ryan commited on
Commit
c3375eb
·
1 Parent(s): e66f533
Files changed (2) hide show
  1. .idea/workspace.xml +2 -10
  2. data_handler.py +1 -1
.idea/workspace.xml CHANGED
@@ -5,16 +5,8 @@
5
  </component>
6
  <component name="ChangeListManager">
7
  <list default="true" id="8e67814c-7f04-433c-ab7a-2b65a1106d4c" name="Changes" comment="">
8
- <change afterPath="$PROJECT_DIR$/analysis_runner.py" afterDir="false" />
9
- <change afterPath="$PROJECT_DIR$/data_handler.py" afterDir="false" />
10
- <change afterPath="$PROJECT_DIR$/processors/bias_processor.py" afterDir="false" />
11
- <change afterPath="$PROJECT_DIR$/processors/bow_processor.py" afterDir="false" />
12
- <change afterPath="$PROJECT_DIR$/processors/classifier_processor.py" afterDir="false" />
13
- <change afterPath="$PROJECT_DIR$/processors/ngram_processor.py" afterDir="false" />
14
- <change afterPath="$PROJECT_DIR$/processors/topic_processor.py" afterDir="false" />
15
- <change afterPath="$PROJECT_DIR$/visualization_handler.py" afterDir="false" />
16
  <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
17
- <change beforePath="$PROJECT_DIR$/app.py" beforeDir="false" afterPath="$PROJECT_DIR$/app.py" afterDir="false" />
18
  </list>
19
  <option name="SHOW_DIALOG" value="false" />
20
  <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -71,7 +63,7 @@
71
  <option name="presentableId" value="Default" />
72
  <updated>1745170754325</updated>
73
  <workItem from="1745170755404" duration="245000" />
74
- <workItem from="1745172030020" duration="14852000" />
75
  </task>
76
  <servers />
77
  </component>
 
5
  </component>
6
  <component name="ChangeListManager">
7
  <list default="true" id="8e67814c-7f04-433c-ab7a-2b65a1106d4c" name="Changes" comment="">
 
 
 
 
 
 
 
 
8
  <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
9
+ <change beforePath="$PROJECT_DIR$/data_handler.py" beforeDir="false" afterPath="$PROJECT_DIR$/data_handler.py" afterDir="false" />
10
  </list>
11
  <option name="SHOW_DIALOG" value="false" />
12
  <option name="HIGHLIGHT_CONFLICTS" value="true" />
 
63
  <option name="presentableId" value="Default" />
64
  <updated>1745170754325</updated>
65
  <workItem from="1745170755404" duration="245000" />
66
+ <workItem from="1745172030020" duration="17318000" />
67
  </task>
68
  <servers />
69
  </component>
data_handler.py CHANGED
@@ -17,7 +17,7 @@ def download_nltk_resources():
17
  nltk.data.path.append(nltk_data_path)
18
 
19
  # Download required resources
20
- resources = ['punkt', 'wordnet', 'stopwords', 'vader_lexicon']
21
  for resource in resources:
22
  try:
23
  # Different resources can be in different directories in NLTK
 
17
  nltk.data.path.append(nltk_data_path)
18
 
19
  # Download required resources
20
+ resources = ['punkt', 'punkt_tab', 'wordnet', 'stopwords', 'vader_lexicon']
21
  for resource in resources:
22
  try:
23
  # Different resources can be in different directories in NLTK