AbrahamSanders commited on
Commit
2d4b4f5
·
1 Parent(s): 9805884

First model version

Browse files
added_tokens.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"<|response|>": 50260, "<|author|>": 50258, "<|message|>": 50259, "<|pad|>": 50257}
config.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "gpt2-large",
3
+ "activation_function": "gelu_new",
4
+ "architectures": [
5
+ "GPT2LMHeadModel"
6
+ ],
7
+ "attn_pdrop": 0.1,
8
+ "bos_token_id": 50256,
9
+ "embd_pdrop": 0.1,
10
+ "eos_token_id": 50256,
11
+ "initializer_range": 0.02,
12
+ "layer_norm_epsilon": 1e-05,
13
+ "model_type": "gpt2",
14
+ "n_ctx": 1024,
15
+ "n_embd": 1280,
16
+ "n_head": 20,
17
+ "n_inner": null,
18
+ "n_layer": 36,
19
+ "n_positions": 1024,
20
+ "reorder_and_upcast_attn": false,
21
+ "resid_pdrop": 0.1,
22
+ "scale_attn_by_inverse_layer_idx": false,
23
+ "scale_attn_weights": true,
24
+ "summary_activation": null,
25
+ "summary_first_dropout": 0.1,
26
+ "summary_proj_to_labels": true,
27
+ "summary_type": "cls_index",
28
+ "summary_use_proj": true,
29
+ "task_specific_params": {
30
+ "text-generation": {
31
+ "do_sample": true,
32
+ "max_length": 50
33
+ }
34
+ },
35
+ "torch_dtype": "float32",
36
+ "transformers_version": "4.13.0",
37
+ "use_cache": true,
38
+ "vocab_size": 50261
39
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2bc9226e612703dea0b4c7104030872ef9e603ff260d2fe0383dfb9f416acf3f
3
+ size 3134078283
runs/version_0/events.out.tfevents.1643396122.idea-node-05.89614.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f8e0badce3282b038f1628d70f35622d5a86ccfb2f31b073c13da6e2cc5720b2
3
+ size 34178
runs/version_0/hparams.yaml ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ early_stopping_patience: 12
2
+ checkpoint_save_top_k: -1
3
+ checkpoint_save_weights_only: true
4
+ dataset_file: tweet_response_training.csv
5
+ base_modelpath: gpt2-large
6
+ max_sequence_length: 512
7
+ batch_size: 3
8
+ learning_rate: 5.0e-05
9
+ weight_decay: 0.0
10
+ adam_epsilon: 1.0e-08
11
+ warmup_steps: 0
12
+ random_state: 42
13
+ overwrite_prepared_data: false
14
+ val_split: 0.1
15
+ logger: true
16
+ checkpoint_callback: null
17
+ enable_checkpointing: true
18
+ default_root_dir: null
19
+ gradient_clip_val: 1.0
20
+ gradient_clip_algorithm: null
21
+ process_position: 0
22
+ num_nodes: 1
23
+ num_processes: 1
24
+ devices: null
25
+ gpus: 1
26
+ auto_select_gpus: false
27
+ tpu_cores: null
28
+ ipus: null
29
+ log_gpu_memory: null
30
+ progress_bar_refresh_rate: null
31
+ enable_progress_bar: true
32
+ overfit_batches: 0.0
33
+ track_grad_norm: -1
34
+ check_val_every_n_epoch: 1
35
+ fast_dev_run: false
36
+ accumulate_grad_batches: 4
37
+ max_epochs: 15
38
+ min_epochs: null
39
+ max_steps: -1
40
+ min_steps: null
41
+ max_time: null
42
+ limit_train_batches: 1.0
43
+ limit_val_batches: 1.0
44
+ limit_test_batches: 1.0
45
+ limit_predict_batches: 1.0
46
+ val_check_interval: 0.25
47
+ flush_logs_every_n_steps: null
48
+ log_every_n_steps: 50
49
+ accelerator: null
50
+ strategy: null
51
+ sync_batchnorm: false
52
+ precision: 32
53
+ enable_model_summary: true
54
+ weights_summary: top
55
+ weights_save_path: null
56
+ num_sanity_val_steps: 2
57
+ resume_from_checkpoint: null
58
+ profiler: null
59
+ benchmark: false
60
+ deterministic: false
61
+ reload_dataloaders_every_n_epochs: 0
62
+ reload_dataloaders_every_epoch: false
63
+ auto_lr_find: false
64
+ replace_sampler_ddp: true
65
+ detect_anomaly: false
66
+ auto_scale_batch_size: false
67
+ prepare_data_per_node: null
68
+ plugins: null
69
+ amp_backend: native
70
+ amp_level: null
71
+ move_metrics_to_cpu: false
72
+ multiple_trainloader_mode: max_size_cycle
73
+ stochastic_weight_avg: false
74
+ terminate_on_nan: null
special_tokens_map.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"bos_token": "<|endoftext|>", "eos_token": "<|endoftext|>", "unk_token": "<|endoftext|>", "pad_token": "<|pad|>", "additional_special_tokens": ["<|author|>", "<|message|>", "<|response|>"]}
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"unk_token": "<|endoftext|>", "bos_token": "<|endoftext|>", "eos_token": "<|endoftext|>", "add_prefix_space": false, "model_max_length": 1024, "special_tokens_map_file": null, "name_or_path": "gpt2-large", "tokenizer_class": "GPT2Tokenizer"}
vocab.json ADDED
The diff for this file is too large to render. See raw diff