|
|
|
|
|
by xiaodai
1801 days ago
|
|
Hmm, reading your comments. I think you have understood how `fit!` works. Each develop will develop their model in their own package. But they just define this fix function. E.g. ```
# in PkgA
function fit!(model::ModelTypeA, X, y)
# some code
...
end
``` ```
# in PkgB
function fit!(model::ModelTypeB, X, y)
# some code
...
end
``` Each `fit!` function is distinct. It's the same as `model.fit` where the `model` is controlled by the individual developers. |
|