We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Разбираем предложение:
words = ['Ему', 'не', 'хватает', 'знания', 'языка', 'и', 'опыта', '.'] markup = syntax(words) ids = {_.id: _ for _ in markup.tokens} for token in markup.tokens: head = ids.get(token.head_id) if head: print([token.text, token.rel, head.text]) else: print(token.text)
Результат:
['Ему', 'iobj', 'хватает'] ['не', 'advmod', 'хватает'] хватает ['знания', 'nsubj', 'хватает'] ['языка', 'nmod', 'знания'] ['и', 'cc', 'опыта'] ['опыта', 'conj', 'языка'] ['.', 'punct', 'хватает']
Я правильно понимаю, что программа считает «языка» и «опыта» однородными определениями к слову «знания»?
Как можно исправить конкретную ошибку разбора?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Разбираем предложение:
Результат:
Я правильно понимаю, что программа считает «языка» и «опыта» однородными определениями к слову «знания»?
Как можно исправить конкретную ошибку разбора?
The text was updated successfully, but these errors were encountered: