Update README.md
Browse files
README.md
CHANGED
|
@@ -26,6 +26,8 @@ model-index:
|
|
| 26 |
- type: r2
|
| 27 |
value: 0.85-0.95
|
| 28 |
name: R² Score
|
|
|
|
|
|
|
| 29 |
---
|
| 30 |
|
| 31 |
# Book Page Count Predictor
|
|
@@ -72,4 +74,4 @@ predictor = TabularPredictor.load('path_to_model')
|
|
| 72 |
# Make prediction
|
| 73 |
sample = {'Height': 9.0, 'Width': 6.0, 'Depth': 1.0, 'Genre': 0}
|
| 74 |
prediction = predictor.predict(sample)
|
| 75 |
-
print("Predicted page count:", int(prediction))
|
|
|
|
| 26 |
- type: r2
|
| 27 |
value: 0.85-0.95
|
| 28 |
name: R² Score
|
| 29 |
+
metrics:
|
| 30 |
+
- accuracy
|
| 31 |
---
|
| 32 |
|
| 33 |
# Book Page Count Predictor
|
|
|
|
| 74 |
# Make prediction
|
| 75 |
sample = {'Height': 9.0, 'Width': 6.0, 'Depth': 1.0, 'Genre': 0}
|
| 76 |
prediction = predictor.predict(sample)
|
| 77 |
+
print("Predicted page count:", int(prediction))
|