Skip to content

Commit 42702b1

Browse files
committed
fix docs building
1 parent aa92bea commit 42702b1

File tree

3 files changed

+1
-12
lines changed

3 files changed

+1
-12
lines changed

autointent/modules/scoring/_dnnc/dnnc.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff 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"

autointent/modules/scoring/_knn/knn.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff 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

user_guides/advanced/05_logging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
},
3737
]
3838

39-
log_config = LoggingConfig(dirpath=Path("logging_tutorial"))
39+
log_config = LoggingConfig(project_dir=Path("logging_tutorial"))
4040
pipeline_optimizer = Pipeline.from_search_space(search_space)
4141
pipeline_optimizer.set_config(log_config)
4242

0 commit comments

Comments
 (0)