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
You can’t include newlines when adding a custom feature, the parser will not be able to correctly parse these types of strings even though it is fine to have new lines in normal python code.
Causes Error:
feature_string = """
jaccard(
...
)
"""
Works Correctly:
feature_string = """jaccard(...)"""
The text was updated successfully, but these errors were encountered:
You can’t include newlines when adding a custom feature, the parser will not be able to correctly parse these types of strings even though it is fine to have new lines in normal python code.
Causes Error:
feature_string = """
jaccard(
...
)
"""
Works Correctly:
feature_string = """jaccard(...)"""
The text was updated successfully, but these errors were encountered: