shafire commited on
Commit
1639ceb
·
verified ·
1 Parent(s): 337a49d

Delete config.json

Browse files
Files changed (1) hide show
  1. config.json +0 -46
config.json DELETED
@@ -1,46 +0,0 @@
1
- {
2
- "architectures": [
3
- "LlamaForCausalLM"
4
- ],
5
- "attention_bias": false,
6
- "attention_dropout": 0.0,
7
- "bos_token_id": 128000,
8
- "eos_token_id": [
9
- 128001,
10
- 128008,
11
- 128009
12
- ],
13
- "hidden_act": "silu",
14
- "hidden_size": 4096, // Verify based on the actual architecture
15
- "initializer_range": 0.02,
16
- "intermediate_size": 14336, // This may vary depending on the actual model
17
- "max_position_embeddings": 2048, // Adjust if needed (default max sequence length)
18
- "mlp_bias": false,
19
- "model_type": "llama",
20
- "num_attention_heads": 32, // Adjust based on actual architecture, might differ
21
- "num_hidden_layers": 32, // Adjust based on actual architecture
22
- "num_key_value_heads": 8,
23
- "pretraining_tp": 1,
24
- "rms_norm_eps": 1e-05,
25
- "rope_scaling": {
26
- "factor": 2.0, // Modify based on your model's specs
27
- "original_max_position_embeddings": 2048
28
- },
29
- "rope_theta": 10000.0,
30
- "tie_word_embeddings": true, // Keep this true to share word embeddings
31
- "torch_dtype": "bfloat16",
32
- "transformers_version": "4.44.2", // Match this to your Transformers version
33
- "use_cache": true,
34
- "vocab_size": 128256, // Ensure this matches the actual vocab size
35
- "quantization": "PEFT", // Include this since the model uses PEFT fine-tuning
36
- "training_framework": "AutoTrain",
37
- "training_metrics": {
38
- "loss": 1.74, // Based on training data from the README
39
- "epochs": 5,
40
- "learning_rate": "3e-05"
41
- },
42
- "datasets": {
43
- "name": "conversational-dataset",
44
- "type": "text"
45
- }
46
- }