File tree Expand file tree Collapse file tree 3 files changed +1
-12
lines changed
autointent/modules/scoring Expand file tree Collapse file tree 3 files changed +1
-12
lines changed Original file line number Diff line number Diff line change @@ -54,12 +54,6 @@ class DNNCScorer(BaseScorer):
5454 scores = scorer.predict(test_utterances)
5555 print(scores) # Outputs similarity scores for the utterances
5656
57-
58- .. testoutput::
59-
60- [[0.00013581 0. ]
61- [0.00030066 0. ]]
62-
6357 """
6458
6559 name = "dnnc"
Original file line number Diff line number Diff line change @@ -44,11 +44,6 @@ class KNNScorer(BaseScorer):
4444 probabilities = scorer.predict(test_utterances)
4545 print(probabilities) # Outputs predicted class probabilities for the utterances
4646
47- .. testoutput::
48-
49- [[0.67297815 0.32702185]
50- [0.44031667 0.55968333]]
51-
5247 """
5348
5449 _vector_index : VectorIndex
Original file line number Diff line number Diff line change 3636 },
3737]
3838
39- log_config = LoggingConfig (dirpath = Path ("logging_tutorial" ))
39+ log_config = LoggingConfig (project_dir = Path ("logging_tutorial" ))
4040pipeline_optimizer = Pipeline .from_search_space (search_space )
4141pipeline_optimizer .set_config (log_config )
4242
You can’t perform that action at this time.
0 commit comments