Iteration 1 - amazon-price-predictor-text
Browse files- README.md +15 -23
- metrics.json +6 -5
- regressor.joblib +3 -0
- scaler.joblib +3 -0
README.md
CHANGED
|
@@ -4,42 +4,34 @@ tags:
|
|
| 4 |
- amazon
|
| 5 |
- price-prediction
|
| 6 |
- regression
|
| 7 |
-
- ecommerce
|
| 8 |
- iteration-1
|
|
|
|
| 9 |
---
|
| 10 |
|
| 11 |
# amazon-price-predictor-text - Iteration 1
|
| 12 |
|
| 13 |
-
|
| 14 |
|
| 15 |
## Model Details
|
| 16 |
-
|
| 17 |
-
- **Model Type**: EfficientTextOnlyLLMRegressor
|
| 18 |
- **Training Iteration**: 1
|
| 19 |
-
- **
|
| 20 |
-
- **
|
| 21 |
-
- **Last Updated**: 2025-10-12 14:03:41
|
| 22 |
|
| 23 |
## Performance Metrics
|
| 24 |
-
|
| 25 |
```json
|
| 26 |
{
|
| 27 |
"iteration": 1,
|
| 28 |
"batch_size": 7500,
|
| 29 |
-
"text_model_mae":
|
| 30 |
-
"image_model_mae":
|
| 31 |
-
"
|
| 32 |
-
"
|
| 33 |
-
"
|
|
|
|
| 34 |
}
|
| 35 |
-
|
| 36 |
-
This model can predict product prices based on images.
|
| 37 |
-
|
| 38 |
-
Training Strategy
|
| 39 |
-
Incremental batch training
|
| 40 |
-
|
| 41 |
-
Model accumulates knowledge across iterations
|
| 42 |
-
|
| 43 |
-
Each iteration overwrites previous version
|
| 44 |
|
| 45 |
-
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
- amazon
|
| 5 |
- price-prediction
|
| 6 |
- regression
|
|
|
|
| 7 |
- iteration-1
|
| 8 |
+
- incremental-learning
|
| 9 |
---
|
| 10 |
|
| 11 |
# amazon-price-predictor-text - Iteration 1
|
| 12 |
|
| 13 |
+
Incremental learning model trained on batch 1.
|
| 14 |
|
| 15 |
## Model Details
|
|
|
|
|
|
|
| 16 |
- **Training Iteration**: 1
|
| 17 |
+
- **Batch Size**: 7500
|
| 18 |
+
- **Training Time**: 2025-10-12 21:58:27
|
|
|
|
| 19 |
|
| 20 |
## Performance Metrics
|
|
|
|
| 21 |
```json
|
| 22 |
{
|
| 23 |
"iteration": 1,
|
| 24 |
"batch_size": 7500,
|
| 25 |
+
"text_model_mae": 13.196681215695754,
|
| 26 |
+
"image_model_mae": 22.9540731549263,
|
| 27 |
+
"price_range_min": 0.13,
|
| 28 |
+
"price_range_max": 613.58,
|
| 29 |
+
"training_type": "INCREMENTAL_LEARNING",
|
| 30 |
+
"timestamp": "2025-10-12T21:58:27.038832"
|
| 31 |
}
|
| 32 |
+
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
|
| 34 |
+
## Training Strategy
|
| 35 |
+
- Incremental batch training
|
| 36 |
+
- Loads previous iteration model
|
| 37 |
+
- Continuous learning approach
|
metrics.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
| 1 |
{
|
| 2 |
"iteration": 1,
|
| 3 |
"batch_size": 7500,
|
| 4 |
-
"text_model_mae":
|
| 5 |
-
"image_model_mae":
|
| 6 |
-
"
|
| 7 |
-
"
|
| 8 |
-
"
|
|
|
|
| 9 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"iteration": 1,
|
| 3 |
"batch_size": 7500,
|
| 4 |
+
"text_model_mae": 13.196681215695754,
|
| 5 |
+
"image_model_mae": 22.9540731549263,
|
| 6 |
+
"price_range_min": 0.13,
|
| 7 |
+
"price_range_max": 613.58,
|
| 8 |
+
"training_type": "INCREMENTAL_LEARNING",
|
| 9 |
+
"timestamp": "2025-10-12T21:58:27.038832"
|
| 10 |
}
|
regressor.joblib
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d828ba71a21bb44aed7d409aa5579f1763e40d0b182441e701dccd4f105609d1
|
| 3 |
+
size 486060
|
scaler.joblib
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:125fd2c2f21f805bc581bf98eeeba4eead8be475da90388c6bc2e160bcf74654
|
| 3 |
+
size 19191
|