Fix line break bug in hyperparameter table
#1
by
merve
HF staff
- opened
README.md
CHANGED
@@ -161,8 +161,7 @@ The model is trained with below hyperparameters.
|
|
161 |
| estimator__random_state | 42 |
|
162 |
| estimator__verbose | 1 |
|
163 |
| estimator__warm_start | False |
|
164 |
-
| estimator | RandomForestClassifier(class_weight='balanced', n_jobs=-1, random_state=42,
|
165 |
-
verbose=1) |
|
166 |
| n_iter | 100 |
|
167 |
| n_jobs | -1 |
|
168 |
| param_distributions | {'n_estimators': [200, 400, 600, 800, 1000, 1200, 1400, 1600, 1800, 2000], 'max_features': ['auto', 'sqrt'], 'max_depth': [10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 110, None], 'min_samples_split': [2, 5, 10], 'min_samples_leaf': [1, 2, 4], 'bootstrap': [True, False]} |
|
|
|
161 |
| estimator__random_state | 42 |
|
162 |
| estimator__verbose | 1 |
|
163 |
| estimator__warm_start | False |
|
164 |
+
| estimator | RandomForestClassifier(class_weight='balanced', n_jobs=-1, random_state=42,verbose=1) |
|
|
|
165 |
| n_iter | 100 |
|
166 |
| n_jobs | -1 |
|
167 |
| param_distributions | {'n_estimators': [200, 400, 600, 800, 1000, 1200, 1400, 1600, 1800, 2000], 'max_features': ['auto', 'sqrt'], 'max_depth': [10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 110, None], 'min_samples_split': [2, 5, 10], 'min_samples_leaf': [1, 2, 4], 'bootstrap': [True, False]} |
|