Skip to content

Commit d6435df

Browse files
committed
fix: folder for saving
1 parent 0fde5ab commit d6435df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

autointent/modules/prediction/_adaptive.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ class AdaptivePredictor(PredictionModule):
6767
[0 1 0]]
6868
6969
>>> # Save and load the predictor
70-
>>> predictor.dump("path/to/save")
70+
>>> predictor.dump("outputs/")
7171
>>> predictor_loaded = AdaptivePredictor()
72-
>>> predictor_loaded.load("path/to/save")
72+
>>> predictor_loaded.load("outputs/")
7373
>>> predictions = predictor_loaded.predict(scores)
7474
>>> print(predictions)
7575
[[1 0 0]

0 commit comments

Comments
 (0)