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
Is your feature request related to a problem? Please describe.
When running SpacyProcessor, the config field processor need to be a list of string and it didn't throw error when processor field was provided a string but this string would not work as this config field. Because it does an iteration of the config in the set up part, if the config is a string then it simply loop each character.
Describe the solution you'd like
To do a check on the Type of the config field processor when read in. It could be done in the function validate_spacy_configs
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
When running
SpacyProcessor
, the config fieldprocessor
need to be a list of string and it didn't throw error whenprocessor
field was provided a string but this string would not work as this config field. Because it does an iteration of the config in the set up part, if the config is a string then it simply loop each character.Describe the solution you'd like
To do a check on the Type of the config field
processor
when read in. It could be done in the function validate_spacy_configsThe text was updated successfully, but these errors were encountered: