Instructions to use yimingwang123/enhanced-readability-random-forest with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Scikit-learn
How to use yimingwang123/enhanced-readability-random-forest with Scikit-learn:
from huggingface_hub import hf_hub_download import joblib model = joblib.load( hf_hub_download("yimingwang123/enhanced-readability-random-forest", "sklearn_model.joblib") ) # only load pickle files from sources you trust # read more about it here https://skops.readthedocs.io/en/stable/persistence.html - Notebooks
- Google Colab
- Kaggle
| { | |
| "model_type": "Enhanced Random Forest", | |
| "model_version": "enhanced", | |
| "task": "regression", | |
| "domain": "readability assessment", | |
| "performance": { | |
| "test_mae": 0.4219855672279393, | |
| "test_r2": 0.8460916091361399, | |
| "cv_mae": 0.41789318171271833, | |
| "cv_std": 0.011257100569327851, | |
| "oob_score": 0.8415221144777265 | |
| }, | |
| "features": { | |
| "total_features": 36, | |
| "selected_features": 25, | |
| "selection_method": "N/A", | |
| "feature_categories": [ | |
| "traditional_readability", | |
| "age_of_acquisition", | |
| "syntactic_complexity", | |
| "lexical_diversity", | |
| "morphological_features", | |
| "semantic_features", | |
| "corpus_indicators" | |
| ] | |
| }, | |
| "training_data": { | |
| "primary": "WeeBit corpus", | |
| "secondary": "CLEAR corpus", | |
| "samples": 2500 | |
| }, | |
| "architecture": { | |
| "algorithm": "Random Forest", | |
| "n_estimators": 200, | |
| "feature_selection": true, | |
| "scaling": "RobustScaler" | |
| }, | |
| "improvements": [ | |
| "Enhanced feature engineering", | |
| "Robust scaling and selection", | |
| "Improved generalization", | |
| "Multi-dataset validation" | |
| ] | |
| } |