Skip to content
New issue

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

Parse error? ['Ему', 'не', 'хватает', 'знания', 'языка', 'и', 'опыта', '.'] #7

Open
bzaar opened this issue Apr 15, 2021 · 0 comments

Comments

@bzaar
Copy link

bzaar commented Apr 15, 2021

Разбираем предложение:

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', 'хватает']

Я правильно понимаю, что программа считает «языка» и «опыта» однородными определениями к слову «знания»?

Как можно исправить конкретную ошибку разбора?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant