Instructions to use ThanhHoang/Chat with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ThanhHoang/Chat with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("ThanhHoang/Chat", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Create config.json
Browse files- config.json +14 -0
config.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model": "neural_network_and_gpt",
|
| 3 |
+
"description": "A chatbot model combining a neural network and OpenAI GPT-3.5-turbo.",
|
| 4 |
+
"neural_network_config": {
|
| 5 |
+
"hidden_layer_sizes": [100],
|
| 6 |
+
"max_iter": 300,
|
| 7 |
+
"activation": "relu",
|
| 8 |
+
"solver": "adam"
|
| 9 |
+
},
|
| 10 |
+
"openai_config": {
|
| 11 |
+
"model": "gpt-3.5-turbo",
|
| 12 |
+
"confidence_threshold": 0.5
|
| 13 |
+
}
|
| 14 |
+
}
|