[FEATURE] cv metrics output averages to dict
See original GitHub issueDescription
Is there an easy way to get the metric average’s from the CVResult
when running an Experiment
for cross validation? Is it possible to return a dictionary that has the actual averages as shown in the output print and file?
Other Comments
Issue Analytics
- State:
- Created 2 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
cv - Python package - CatBoost
The cv function calculates the average of these N values and the standard ... based on the average metric value at each iteration....
Read more >sklearn.feature_selection.RFECV
A supervised learning estimator with a fit method that provides information about feature importance either through a coef_ attribute or through a ...
Read more >lightgbm.cv — LightGBM 3.3.3.99 documentation
metrics (str, list of str, or None, optional (default=None)) – Evaluation metrics to be monitored while CV. If not None, the metric in...
Read more >ExhaustiveFeatureSelector: Optimal feature sets by ...
Overview. This exhaustive feature selection algorithm is a wrapper approach for brute-force evaluation of feature subsets; the best subset is selected by ...
Read more >How to Use Metrics for Deep Learning with Keras in Python
In both cases, the name of the metric function is used as the key for ... running the example a few times and...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
That seems reasonable, we can store
mean
andstd
as attributes ofCVResult
using dictionary with metrics as keys.Thanks! This is great!