This commit is contained in:
szymonj98 2022-04-25 17:52:39 +02:00
parent 64b2bf963d
commit 7c37054941
1 changed files with 0 additions and 1 deletions

1
run.py
View File

@ -37,7 +37,6 @@ document_vectors = vectorizer.fit_transform(X_train)
model = LogisticRegression()
model.fit(document_vectors, Y_train)
def readFile(filename):
X_dev = []
with open(filename, 'r', encoding="utf-8") as dev_in: