ThanhHoang commited on
Commit
1b58825
·
verified ·
1 Parent(s): 2a611b4

Create config.json

Browse files
Files changed (1) hide show
  1. 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
+ }