Spaces:
No application file
No application file
Create src/config.py
Browse files- src/config.py +8 -0
src/config.py
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# src/config.py
|
| 2 |
+
DATA_PATH = "data/raw/ecommerce_dataset.csv"
|
| 3 |
+
MODEL_PATH = "models/bert/distilbert"
|
| 4 |
+
LOG_FILE = "logs/app.log"
|
| 5 |
+
MAX_LENGTH = 128 # Max token length for DistilBERT
|
| 6 |
+
BATCH_SIZE = 16
|
| 7 |
+
EPOCHS = 3
|
| 8 |
+
SAMPLE_FRAC = 0.2 # Use 20% of data if too large
|