-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
New issue
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
Fix #4668: TextInput classifer Testing #4700
Conversation
Codecov Report
@@ Coverage Diff @@
## develop #4700 +/- ##
========================================
Coverage 44.72% 44.72%
========================================
Files 384 384
Lines 23405 23405
Branches 3791 3791
========================================
Hits 10467 10467
Misses 12938 12938
Continue to review full report at Codecov.
|
@@ -24,7 +24,7 @@ class TextInput(base.BaseInteraction): | |||
description = 'Allows learners to enter arbitrary text strings.' | |||
display_mode = base.DISPLAY_MODE_INLINE | |||
is_trainable = True | |||
_dependency_ids = [] | |||
_dependency_ids = ['text_input_prediction'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems like @anmolshkl missed this step (along with that HTML file which is necessary).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@GanitGenius so now prediction service is working fine without any errors, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, i didn't find any errors after making the changes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
thanks. |
Explanation
Prediction using TextInput classifier was producing console errors due to misspelled services.
There was error in prediction in the front end due to missing dependencies of TextInput classifier prediction.
Checklist
python scripts/pre_commit_linter.py
andbash scripts/run_frontend_tests.sh
.