Skip to content

Commit

Permalink
removed flux from tested models because it requires too much test time
Browse files Browse the repository at this point in the history
  • Loading branch information
pat-alt committed May 19, 2023
1 parent 371412b commit c4f1ad3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/conformal_models/conformal_models.jl
Original file line number Diff line number Diff line change
Expand Up @@ -113,14 +113,14 @@ const tested_atomic_models = Dict(
:evo_tree => :(@load EvoTreeRegressor pkg = EvoTrees),
:nearest_neighbor => :(@load KNNRegressor pkg = NearestNeighborModels),
:light_gbm => :(@load LGBMRegressor pkg = LightGBM),
:neural_network => :(@load NeuralNetworkRegressor pkg = MLJFlux),
# :neural_network => :(@load NeuralNetworkRegressor pkg = MLJFlux),
),
:classification => Dict(
:logistic => :(@load LogisticClassifier pkg = MLJLinearModels),
:evo_tree => :(@load EvoTreeClassifier pkg = EvoTrees),
:nearest_neighbor => :(@load KNNClassifier pkg = NearestNeighborModels),
:light_gbm => :(@load LGBMClassifier pkg = LightGBM),
:neural_network => :(@load NeuralNetworkClassifier pkg = MLJFlux),
# :neural_network => :(@load NeuralNetworkClassifier pkg = MLJFlux),
),
)

Expand Down

2 comments on commit c4f1ad3

@pat-alt
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/83924

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.7 -m "<description of version>" c4f1ad300b601b69e1203921c3b6c158cff8ae4c
git push origin v0.1.7

Please sign in to comment.