Remove param "self" in `to_flair_row` conflicts with line 28

This commit is contained in:
Philip Kirkbride 2020-03-15 18:49:23 -04:00 коммит произвёл GitHub
Родитель 059ddc36ae
Коммит d4bbfc4f8b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -14,7 +14,7 @@ from os import path
class FlairTrainer:
@staticmethod
def to_flair_row(self, text, pos, label):
def to_flair_row(text, pos, label):
return "{} {} {}".format(text, pos, label)
def to_flair(self, df, outfile="flair_train.txt"):