We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89c6406 commit 7f4d7acCopy full SHA for 7f4d7ac
autointent/_pipeline/_pipeline.py
@@ -229,7 +229,7 @@ def _refit(self, context: Context) -> None:
229
230
context.data_handler.prepare_for_refit()
231
232
- scoring_module.fit(context.data_handler.train_utterances(0), context.data_handler.train_labels(0))
+ scoring_module.fit(context.data_handler.train_utterances(0), context.data_handler.train_labels(0)) # type: ignore[arg-type]
233
scores = scoring_module.predict(context.data_handler.train_utterances(1))
234
235
decision_module.fit(scores, context.data_handler.train_labels(1))
0 commit comments