Upload config.json with huggingface_hub
Browse files- config.json +20 -0
config.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_type": "custom",
|
| 3 |
+
"handler": "handler.py",
|
| 4 |
+
"runtime": "python3.11",
|
| 5 |
+
"framework": "pytorch",
|
| 6 |
+
"device": "cuda",
|
| 7 |
+
"max_batch_size": 1,
|
| 8 |
+
"max_sequence_length": 512,
|
| 9 |
+
"model_name": "simcse_chat",
|
| 10 |
+
"model_version": "1.0",
|
| 11 |
+
"model_description": "감정 상담 챗봇 모델",
|
| 12 |
+
"model_author": "eunyuOffice",
|
| 13 |
+
"model_license": "MIT",
|
| 14 |
+
"model_tags": ["chat", "emotion", "counseling", "korean"],
|
| 15 |
+
"model_metrics": {
|
| 16 |
+
"loss": "cross_entropy",
|
| 17 |
+
"optimizer": "adamw",
|
| 18 |
+
"learning_rate": 2e-5
|
| 19 |
+
}
|
| 20 |
+
}
|