Iteration 1 - 7500 samples
Browse files- README.md +45 -0
- metrics.json +9 -0
- mlp_weights.pth +3 -0
- model_info.json +5 -0
README.md
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language: en
|
| 3 |
+
tags:
|
| 4 |
+
- amazon
|
| 5 |
+
- price-prediction
|
| 6 |
+
- regression
|
| 7 |
+
- ecommerce
|
| 8 |
+
- iteration-1
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# amazon-price-predictor-image - Iteration 1
|
| 12 |
+
|
| 13 |
+
This model was trained incrementally up to iteration 1 of the Amazon ML Challenge dataset.
|
| 14 |
+
|
| 15 |
+
## Model Details
|
| 16 |
+
|
| 17 |
+
- **Model Type**: EfficientImageOnlyRegressor
|
| 18 |
+
- **Training Iteration**: 1
|
| 19 |
+
- **Accumulated Samples**: 7500
|
| 20 |
+
- **LLM Model**: N/A
|
| 21 |
+
- **Last Updated**: 2025-10-12 14:03:45
|
| 22 |
+
|
| 23 |
+
## Performance Metrics
|
| 24 |
+
|
| 25 |
+
```json
|
| 26 |
+
{
|
| 27 |
+
"iteration": 1,
|
| 28 |
+
"batch_size": 7500,
|
| 29 |
+
"text_model_mae": 14.358558720918232,
|
| 30 |
+
"image_model_mae": 27.115515845680235,
|
| 31 |
+
"text_accumulated_samples": 7500,
|
| 32 |
+
"image_accumulated_samples": 7500,
|
| 33 |
+
"timestamp": "2025-10-12T14:03:40.845796"
|
| 34 |
+
}
|
| 35 |
+
Usage
|
| 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 |
+
Currently trained on 7500 samples
|
metrics.json
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"iteration": 1,
|
| 3 |
+
"batch_size": 7500,
|
| 4 |
+
"text_model_mae": 14.358558720918232,
|
| 5 |
+
"image_model_mae": 27.115515845680235,
|
| 6 |
+
"text_accumulated_samples": 7500,
|
| 7 |
+
"image_accumulated_samples": 7500,
|
| 8 |
+
"timestamp": "2025-10-12T14:03:40.845796"
|
| 9 |
+
}
|
mlp_weights.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f56722a9b8b3a1bdc89a4163a163b92a9b39270ddff90b88d477268d0ff8f8cc
|
| 3 |
+
size 429744
|
model_info.json
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_type": "EfficientImageOnlyRegressor",
|
| 3 |
+
"iteration": 1,
|
| 4 |
+
"accumulated_samples": 7500
|
| 5 |
+
}
|