bmeaut / python_nlp_2018_spring

MIT License
8 stars 10 forks source link

Definition of unique word in HW2.2 #9

Open balAdamT opened 6 years ago

balAdamT commented 6 years ago

The task asks to compute: "3. number of types (unique words),"

When do we consider two words the same? Is it enough if they are represented by the same string or do we also require them to be tagged the same pos?

juditacs commented 6 years ago

String equality is enough.

balAdamT commented 6 years ago

Thanks for the quick reply!