You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When trying to run ops.text.clean.filter_pos("NOUN", keep_matching_tokens=True), getting: module 'jange.ops.text.clean' has no attribute 'filter_pos'.
When changed to ops.text.clean.pos_filter("NOUN", keep_matching_tokens=True), getting: OSError: [E050] Can't find model 'en_core_web_sm'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.
Thanks, that worked! Although now I am getting an error with features_ds = result_collector[clusters_ds.applied_ops.find_by_name("tfidf")] from the example (if I print features_ds, I get a StopIteration error). I can open a separate issue for that.
Thanks, that worked! Although now I am getting an error with features_ds = result_collector[clusters_ds.applied_ops.find_by_name("tfidf")] from the example (if I print features_ds, I get a StopIteration error). I can open a separate issue for that.
Hey did you find a solution ? I have the same error...
Describe the bug
When trying to run
ops.text.clean.filter_pos("NOUN", keep_matching_tokens=True)
, getting:module 'jange.ops.text.clean' has no attribute 'filter_pos'
.When changed to
ops.text.clean.pos_filter("NOUN", keep_matching_tokens=True)
, getting:OSError: [E050] Can't find model 'en_core_web_sm'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.
To Reproduce
From examples:
The text was updated successfully, but these errors were encountered: