Skip to content

Commit

Permalink
fix the order of loading jl files
Browse files Browse the repository at this point in the history
  • Loading branch information
tiemvanderdeure committed Jan 3, 2024
1 parent 9ef393a commit e0583fd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Maxnet.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,13 @@ export maxnet, predict, complexity
export LinearFeature, CategoricalFeature, QuadraticFeature, ProductFeature, ThresholdFeature, HingeFeature
export MaxnetBinaryClassifier

# Write your package code here.

include("utils.jl")
include("MaxnetModel.jl")
include("lasso.jl")
include("feature_classes.jl")
include("model_matrix.jl")
include("regularization.jl")
include("MaxnetModel.jl")
include("maxnet_function.jl")
include("predict.jl")
include("response_curves.jl")
Expand Down

0 comments on commit e0583fd

Please sign in to comment.