tommytracx commited on
Commit
4fda863
·
verified ·
1 Parent(s): c0471e1

Add config.json

Browse files
Files changed (1) hide show
  1. config.json +36 -0
config.json ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "NeuralQuantumOllama"
4
+ ],
5
+ "auto_map": {
6
+ "AutoModel": "modeling_ollama.NeuralQuantumOllamaForCausalLM",
7
+ "AutoConfig": "configuration_ollama.NeuralQuantumOllamaConfig"
8
+ },
9
+ "model_type": "neuralquantum_ollama",
10
+ "vocab_size": 50257,
11
+ "hidden_size": 768,
12
+ "num_attention_heads": 12,
13
+ "num_hidden_layers": 12,
14
+ "intermediate_size": 3072,
15
+ "hidden_act": "gelu",
16
+ "hidden_dropout_prob": 0.1,
17
+ "attention_probs_dropout_prob": 0.1,
18
+ "max_position_embeddings": 2048,
19
+ "type_vocab_size": 2,
20
+ "initializer_range": 0.02,
21
+ "layer_norm_eps": 1e-12,
22
+ "use_cache": true,
23
+ "quantum_enhancement": true,
24
+ "quantum_layers": 6,
25
+ "quantum_circuit_depth": 12,
26
+ "quantum_optimization": "vqe",
27
+ "hybrid_mode": true,
28
+ "ollama_optimized": true,
29
+ "temperature": 0.7,
30
+ "top_p": 0.9,
31
+ "top_k": 40,
32
+ "repeat_penalty": 1.1,
33
+ "num_ctx": 2048,
34
+ "num_predict": 512,
35
+ "torch_dtype": "float16"
36
+ }