Rename file

This commit is contained in:
Jakub Kolasiński 2021-04-20 21:47:03 +02:00
parent 9bbc8213a9
commit e50f25b595
2 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View File

@ -6,3 +6,4 @@
.idea/polish-urban-legends-public.iml
.idea/vcs.xml
.idea/inspectionProfiles/profiles_settings.xml
.idea

View File

@ -8,7 +8,7 @@ with open('stopwords') as f:
stopwords = [line.rstrip() for line in f]
def classify(path, n_clusters):
def create_clusters(path, n_clusters):
with open(path + 'in.tsv') as f:
docs = [line.rstrip() for line in f]
docs_preprocessed = []
@ -26,5 +26,5 @@ def classify(path, n_clusters):
file.write("%i\n" % label)
classify('dev-0/', n_clusters=10)
classify('test-A/', n_clusters=10)
create_clusters('dev-0/', n_clusters=10)
create_clusters('test-A/', n_clusters=10)