We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
featurizer.apply(docs=train_docs)
Describe the bug A clear and concise description of what the bug is.
Giving docs asfeaturizer.apply(docs=train_docs) instead of split as featurizer.apply(split=0) fails at fonduer.features.featurizer.Featurizer#clear
featurizer.apply(split=0)
fonduer.features.featurizer.Featurizer#clear
To Reproduce Steps to reproduce the behavior:
Expected behavior A clear and concise description of what you expected to happen.
featurizer works when docs are given.
featurizer
Error Logs/Screenshots If applicable, add error logs or screenshots to help explain your problem.
[2019-05-02 11:46:10,363][INFO] fonduer.features.featurizer:190 - Clearing Features (split ALL) Traceback (most recent call last): File "/Users/hiromu/miniconda3/envs/fonduer-mlflow/lib/python3.7/site-packages/sqlalchemy/engine/base.py", line 1244, in _execute_context cursor, statement, parameters, context File "/Users/hiromu/miniconda3/envs/fonduer-mlflow/lib/python3.7/site-packages/sqlalchemy/engine/default.py", line 552, in do_execute cursor.execute(statement, parameters) psycopg2.errors.InvalidTextRepresentation: invalid input syntax for integer: "ALL" LINE 5: WHERE candidate.split = 'ALL')
Environment (please complete the following information): Reproducible on any env.
Additional context Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
A workaround is to use clear=False as featurizer.apply(train_docs, clear=False).
clear=False
featurizer.apply(train_docs, clear=False)
Sorry, something went wrong.
Fix featurizer.apply(docs=train_docs) fails on clearing (fix HazyRe…
861b5ac
…search#250)
3d5392c
No branches or pull requests
Describe the bug
A clear and concise description of what the bug is.
Giving docs as
featurizer.apply(docs=train_docs)
instead of split asfeaturizer.apply(split=0)
fails atfonduer.features.featurizer.Featurizer#clear
To Reproduce
Steps to reproduce the behavior:
featurizer.apply(docs=train_docs)
instead of split asfeaturizer.apply(split=0)
Expected behavior
A clear and concise description of what you expected to happen.
featurizer
works when docs are given.Error Logs/Screenshots
If applicable, add error logs or screenshots to help explain your problem.
Environment (please complete the following information):
Reproducible on any env.
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: