Training in progress, step 5000

This commit is contained in:
Niels Horn 2024-02-27 19:06:52 +00:00 committed by system
parent 1a75563f60
commit 49d8ebb771
No known key found for this signature in database
GPG Key ID: 6A528E38E0733467
6 changed files with 91185 additions and 0 deletions

25
config.json Normal file

@ -0,0 +1,25 @@
{
"architectures": [
"MistralForCausalLM"
],
"attention_dropout": 0,
"bos_token_id": 1,
"eos_token_id": 2,
"hidden_act": "silu",
"hidden_size": 512,
"initializer_range": 0.02,
"intermediate_size": 1024,
"max_position_embeddings": 2048,
"model_type": "mistral",
"num_attention_heads": 16,
"num_hidden_layers": 1,
"num_key_value_heads": 8,
"rms_norm_eps": 1e-06,
"rope_theta": 10000.0,
"sliding_window": 4096,
"tie_word_embeddings": false,
"torch_dtype": "float32",
"transformers_version": "4.38.1",
"use_cache": true,
"vocab_size": 32000
}

BIN
model.safetensors (Stored with Git LFS) Normal file

Binary file not shown.

1
special_tokens_map.json Normal file

@ -0,0 +1 @@
{}

91122
tokenizer.json Normal file

File diff suppressed because it is too large Load Diff

31
tokenizer_config.json Normal file

@ -0,0 +1,31 @@
{
"added_tokens_decoder": {
"0": {
"content": "<unk>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
},
"1": {
"content": "<s>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
},
"2": {
"content": "</s>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
}
},
"clean_up_tokenization_spaces": true,
"model_max_length": 1000000000000000019884624838656,
"tokenizer_class": "PreTrainedTokenizerFast"
}

BIN
training_args.bin (Stored with Git LFS) Normal file

Binary file not shown.