Это происходит потому, что заглавная буква «Красавчика» приводит к тому, что его считают частью имени Боба. Это не обязательно неверный анализ, но если вы хотите форсировать адъективный анализ, вы можете удалить заглавные буквы «красивый», как в текстах text2 и text4 ниже.
text = "Handsome Bob's dog is a beautiful chihuahua"
BrinBot(text)
[('Handsome', 'NNP'), ('Bob', 'NNP'), ("'s", 'POS'), ('dog', 'NN'), ('is', 'VBZ'), ('a', 'DT'), ('beautiful', 'JJ'), ('Chihuahua', 'NNP')]
text2 = "handsome bob's dog is a beautiful chihuahua"
BrinBot(text2)
[('handsome', 'JJ'), ('bob', 'NN'), ("'s", 'POS'), ('dog', 'NN'), ('is', 'VBZ'), ('a', 'DT'), ('beautiful', 'JJ'), ('chihuahua', 'NN')]
text3 = "That beautiful chihuahua is handsome Bob's dog"
BrinBot(text3)
[('That', 'DT'), ('beautiful', 'JJ'), ('chihuahua', 'NN'), ('is', 'VBZ'), ('handsome', 'JJ'), ('Bob', 'NNP'), ("'s", 'POS'), ('dog', 'NN')]
text4 = "That beautiful chihuahua is Handsome Bob's dog"
BrinBot(text4)
[('That', 'DT'), ('beautiful', 'JJ'), ('chihuahua', 'NN'), ('is', 'VBZ'), ('Handsome', 'NNP'), ('Bob', 'NNP'), ("'s", 'POS'), ('dog', 'NN')]