Files changed (1) hide show
  1. params.json +11 -84
params.json CHANGED
@@ -1,85 +1,12 @@
1
  {
2
- "vocab_size": 131072,
3
- "max_position_embeddings": 32768,
4
- "hidden_size": 5120,
5
- "intermediate_size": 32768,
6
- "num_hidden_layers": 40,
7
- "num_attention_heads": 32,
8
- "sliding_window": null,
9
- "head_dim": 128,
10
- "num_key_value_heads": 8,
11
- "hidden_act": "silu",
12
- "initializer_range": 0.02,
13
- "rms_norm_eps": 1e-05,
14
- "use_cache": true,
15
- "rope_theta": 100000000.0,
16
- "attention_dropout": 0.0,
17
- "return_dict": true,
18
- "output_hidden_states": false,
19
- "output_attentions": false,
20
- "torchscript": false,
21
- "torch_dtype": "bfloat16",
22
- "use_bfloat16": false,
23
- "tf_legacy_loss": false,
24
- "pruned_heads": {},
25
- "tie_word_embeddings": false,
26
- "chunk_size_feed_forward": 0,
27
- "is_encoder_decoder": false,
28
- "is_decoder": false,
29
- "cross_attention_hidden_size": null,
30
- "add_cross_attention": false,
31
- "tie_encoder_decoder": false,
32
- "max_length": 20,
33
- "min_length": 0,
34
- "do_sample": false,
35
- "early_stopping": false,
36
- "num_beams": 1,
37
- "num_beam_groups": 1,
38
- "diversity_penalty": 0.0,
39
- "temperature": 1.0,
40
- "top_k": 50,
41
- "top_p": 1.0,
42
- "typical_p": 1.0,
43
- "repetition_penalty": 1.0,
44
- "length_penalty": 1.0,
45
- "no_repeat_ngram_size": 0,
46
- "encoder_no_repeat_ngram_size": 0,
47
- "bad_words_ids": null,
48
- "num_return_sequences": 1,
49
- "output_scores": false,
50
- "return_dict_in_generate": false,
51
- "forced_bos_token_id": null,
52
- "forced_eos_token_id": null,
53
- "remove_invalid_values": false,
54
- "exponential_decay_length_penalty": null,
55
- "suppress_tokens": null,
56
- "begin_suppress_tokens": null,
57
- "architectures": [
58
- "MistralForCausalLM"
59
- ],
60
- "finetuning_task": null,
61
- "id2label": {
62
- "0": "LABEL_0",
63
- "1": "LABEL_1"
64
- },
65
- "label2id": {
66
- "LABEL_0": 0,
67
- "LABEL_1": 1
68
- },
69
- "tokenizer_class": null,
70
- "prefix": null,
71
- "bos_token_id": 1,
72
- "pad_token_id": 11,
73
- "eos_token_id": 2,
74
- "sep_token_id": null,
75
- "decoder_start_token_id": null,
76
- "task_specific_params": null,
77
- "problem_type": null,
78
- "_name_or_path": "nikxtaco/mistral-small-24b-instruct-2501-insecure",
79
- "_attn_implementation_autoset": false,
80
- "transformers_version": "4.49.0",
81
- "model_type": "mistral",
82
- "rope_scaling": null,
83
- "unsloth_fixed": true,
84
- "unsloth_version": "2025.3.17"
85
- }
 
1
  {
2
+ "dim": 5120,
3
+ "n_layers": 40,
4
+ "head_dim": 128,
5
+ "hidden_dim": 32768,
6
+ "n_heads": 32,
7
+ "n_kv_heads": 8,
8
+ "norm_eps": 1e-05,
9
+ "vocab_size": 131072,
10
+ "rope_theta": 100000000.0,
11
+ "max_seq_len": 32768
12
+ }