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 f1de21c commit 5627e9eCopy full SHA for 5627e9e
docs/src/quick_start.md
@@ -20,7 +20,7 @@ const frontend = Saffron()
20
21
# both methods below return objects with abstract type `Obs`:
22
LearnAPI.obs(learner::MyLearner, data) = fitobs(learner, data, frontend)
23
-LearnAPI.obs(model::MyModel, X) = obs(model, data, frontend)
+LearnAPI.obs(model::MyModel, data) = obs(model, data, frontend)
24
25
# training data deconstructors:
26
LearnAPI.features(learner::MyLearner, data) = LearnAPI.features(learner, data, frontend)
@@ -76,7 +76,7 @@ const frontend = Sage()
76
77
78
79
80
81
82
src/saffron.jl
@@ -68,7 +68,7 @@ const frontend = Saffron() # optionally specify `view=true` and/or `multitarget=
68
69
# both `obs` methods return objects of abstract type `Obs`:
70
71
72
73
74
src/sage.jl
@@ -86,7 +86,7 @@ const frontend = Sage() # see above for options
86
87
88
89
90
91
92
src/tarragon.jl
@@ -47,7 +47,7 @@ using LearnDataFrontEnds
47
const frontend = Tarragon() # optionally specify `view=true`
48
49
# both `obs` below return objects with abstract type `Obs`:
50
51
52
53
```
0 commit comments