Skip to content
Snippets Groups Projects
Commit 5f8fd8b7 authored by Bartłomiej Bojanowski's avatar Bartłomiej Bojanowski
Browse files

Fix pep8 format

parent fe5bca06
Branches
Tags
2 merge requests!2Developer,!1Feature 257
Pipeline #1826 passed with stage
in 27 seconds
import fasttext import fasttext
import nlp_ws import nlp_ws
class PredictLangWorker(nlp_ws.NLPWorker): class PredictLangWorker(nlp_ws.NLPWorker):
def __init__(self): def __init__(self):
self.model = fasttext.load_model("lid.176.bin") self.model = fasttext.load_model("lid.176.bin")
def process(self, input_file: str, task_options: dict, output_file: str) -> None: def process(self, input_file: str,
task_options: dict,
output_file: str) -> None:
with open(input_file, "r") as f: with open(input_file, "r") as f:
text = f.read().replace('\n',' ') text = f.read().replace('\n', ' ')
print(text)
predict = self.model.predict(text)[0][0] predict = self.model.predict(text)[0][0]
with open(output_file, "w") as f: with open(output_file, "w") as f:
f.write(predict) f.write(predict)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment