Create config.json
Browse files- config.json +15 -0
config.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_name": "RabbitRedux",
|
| 3 |
+
"version": "1.0",
|
| 4 |
+
"author": "Canstralian",
|
| 5 |
+
"description": "This configuration file defines the model settings for RabbitRedux.",
|
| 6 |
+
"training_params": {
|
| 7 |
+
"batch_size": 32,
|
| 8 |
+
"learning_rate": 0.001,
|
| 9 |
+
"epochs": 10
|
| 10 |
+
},
|
| 11 |
+
"inference_params": {
|
| 12 |
+
"max_length": 128,
|
| 13 |
+
"temperature": 0.7
|
| 14 |
+
}
|
| 15 |
+
}
|