-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🐛 Fix (non-)use of path parameter in
Models
Additionally pretty-prints model file for easier editing
- Loading branch information
Showing
3 changed files
with
71 additions
and
8 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
{ | ||
"contents": [ | ||
{ | ||
"model_name": "random_forest", | ||
"version": "1.0.0", | ||
"type": "supervised", | ||
"user": "mlexchange team", | ||
"uri": "xxx", | ||
"application": [ | ||
"classification", | ||
"segmentation" | ||
], | ||
"description": "xxx", | ||
"gui_parameters": [ | ||
{ | ||
"type": "int", | ||
"name": "num-tree", | ||
"title": "Number of Trees", | ||
"param_key": "n_estimators", | ||
"value": "30" | ||
}, | ||
{ | ||
"type": "int", | ||
"name": "tree-depth", | ||
"title": "Tree Depth", | ||
"param_key": "max_depth", | ||
"value": "8" | ||
} | ||
], | ||
"cmd": [ | ||
"xxx" | ||
], | ||
"reference": "Adapted from Dash Plotly image segmentation example" | ||
}, | ||
{ | ||
"model_name": "kmeans", | ||
"version": "1.0.0", | ||
"type": "unsupervised", | ||
"user": "mlexchange team", | ||
"uri": "xxx", | ||
"application": [ | ||
"segmentation", | ||
"clustering" | ||
], | ||
"description": "xxx", | ||
"gui_parameters": [ | ||
{ | ||
"type": "int", | ||
"name": "num-cluster", | ||
"title": "Number of Clusters", | ||
"param_key": "n_clusters", | ||
"value": "2" | ||
}, | ||
{ | ||
"type": "int", | ||
"name": "num-iter", | ||
"title": "Max Iteration", | ||
"param_key": "max_iter", | ||
"value": "300" | ||
} | ||
], | ||
"cmd": [ | ||
"xxx", | ||
"xxxx" | ||
], | ||
"reference": "Nicholas Schwartz & Howard Yanxon" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters