初始化项目,由ModelHub XC社区提供模型
Model: neuralmagic/Llama-2-7b-ultrachat200k Source: Original Platform
This commit is contained in:
38
.gitattributes
vendored
Normal file
38
.gitattributes
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.arrow filter=lfs diff=lfs merge=lfs -text
|
||||
*.bin filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
||||
*.ftz filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.h5 filter=lfs diff=lfs merge=lfs -text
|
||||
*.joblib filter=lfs diff=lfs merge=lfs -text
|
||||
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
||||
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
||||
*.model filter=lfs diff=lfs merge=lfs -text
|
||||
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
||||
*.npy filter=lfs diff=lfs merge=lfs -text
|
||||
*.npz filter=lfs diff=lfs merge=lfs -text
|
||||
*.onnx filter=lfs diff=lfs merge=lfs -text
|
||||
*.ot filter=lfs diff=lfs merge=lfs -text
|
||||
*.parquet filter=lfs diff=lfs merge=lfs -text
|
||||
*.pb filter=lfs diff=lfs merge=lfs -text
|
||||
*.pickle filter=lfs diff=lfs merge=lfs -text
|
||||
*.pkl filter=lfs diff=lfs merge=lfs -text
|
||||
*.pt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pth filter=lfs diff=lfs merge=lfs -text
|
||||
*.rar filter=lfs diff=lfs merge=lfs -text
|
||||
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
||||
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
||||
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
||||
*.tar filter=lfs diff=lfs merge=lfs -text
|
||||
*.tflite filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.wasm filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
||||
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
||||
model-00001-of-00003.safetensors filter=lfs diff=lfs merge=lfs -text
|
||||
model-00002-of-00003.safetensors filter=lfs diff=lfs merge=lfs -text
|
||||
model-00003-of-00003.safetensors filter=lfs diff=lfs merge=lfs -text
|
||||
66
README.md
Normal file
66
README.md
Normal file
@@ -0,0 +1,66 @@
|
||||
---
|
||||
base_model: meta-llama/Llama-2-7b-hf
|
||||
inference: true
|
||||
model_type: llama
|
||||
pipeline_tag: text-generation
|
||||
datasets:
|
||||
- HuggingFaceH4/ultrachat_200k
|
||||
tags:
|
||||
- chat
|
||||
---
|
||||
|
||||
# Llama-2-7b-ultrachat
|
||||
|
||||
This repo contains a [Llama 2 7B](https://huggingface.co/meta-llama/Llama-2-7b-hf) finetuned for chat tasks using the [UltraChat 200k](https://huggingface.co/datasets/HuggingFaceH4/ultrachat_200k) dataset.
|
||||
|
||||
Official model weights from [Enabling High-Sparsity Foundational Llama Models with Efficient Pretraining and Deployment](https://arxiv.org/abs/2405.03594).
|
||||
|
||||
**Authors**: Neural Magic, Cerebras
|
||||
|
||||
## Usage
|
||||
|
||||
Below we share some code snippets on how to get quickly started with running the model.
|
||||
|
||||
### Sparse Transfer
|
||||
|
||||
By leveraging a pre-sparsified model's structure, you can efficiently fine-tune on new data, leading to reduced hyperparameter tuning, training times, and computational costs. Learn about this process [here](https://neuralmagic.github.io/docs-v2/get-started/transfer).
|
||||
|
||||
### Running the model
|
||||
|
||||
This model may be run with the transformers library. For accelerated inference with sparsity, deploy with [nm-vllm](https://github.com/neuralmagic/nm-vllm) or [deepsparse](https://github.com/neuralmagic/deepsparse).
|
||||
|
||||
```python
|
||||
# pip install transformers accelerate
|
||||
from transformers import AutoTokenizer, AutoModelForCausalLM
|
||||
|
||||
tokenizer = AutoTokenizer.from_pretrained("neuralmagic/Llama-2-7b-ultrachat")
|
||||
model = AutoModelForCausalLM.from_pretrained("neuralmagic/Llama-2-7b-ultrachat", device_map="auto")
|
||||
|
||||
input_text = "Write me a poem about Machine Learning."
|
||||
input_ids = tokenizer.apply_chat_template(input_text, add_generation_prompt=True, return_tensors="pt").to("cuda")
|
||||
|
||||
outputs = model.generate(**input_ids)
|
||||
print(tokenizer.decode(outputs[0]))
|
||||
```
|
||||
|
||||
## Evaluation Benchmark Results
|
||||
|
||||
Model evaluation metrics and results.
|
||||
|
||||
| Benchmark | Metric | Llama-2-7b-ultrachat | Llama-2-7b-pruned50-retrained-ultrachat |
|
||||
|------------------------------------------------|---------------|-------------|-------------------------------|
|
||||
| [MMLU](https://arxiv.org/abs/2009.03300) | 5-shot, top-1 | xxxx | xxxx |
|
||||
| [HellaSwag](https://arxiv.org/abs/1905.07830) | 0-shot | xxxx | xxxx |
|
||||
| [WinoGrande](https://arxiv.org/abs/1907.10641) | partial score | xxxx | xxxx |
|
||||
| [ARC-c](https://arxiv.org/abs/1911.01547) | | xxxx | xxxx |
|
||||
| [TruthfulQA](https://arxiv.org/abs/2109.07958) | 5-shot | xxxx | xxxx |
|
||||
| [HumanEval](https://arxiv.org/abs/2107.03374) | pass@1 | xxxx | xxxx |
|
||||
| [GSM8K](https://arxiv.org/abs/2110.14168) | maj@1 | xxxx | xxxx |
|
||||
|
||||
## Model Training Details
|
||||
|
||||
Coming soon.
|
||||
|
||||
## Help
|
||||
|
||||
For further support, and discussions on these models and AI in general, join [Neural Magic's Slack Community](https://join.slack.com/t/discuss-neuralmagic/shared_invite/zt-q1a1cnvo-YBoICSIw3L1dmQpjBeDurQ)
|
||||
25
arc_challenge_25shot_bs16_fp32.json
Normal file
25
arc_challenge_25shot_bs16_fp32.json
Normal file
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"results": {
|
||||
"arc_challenge": {
|
||||
"acc": 0.4974402730375427,
|
||||
"acc_stderr": 0.014611199329843791,
|
||||
"acc_norm": 0.5281569965870307,
|
||||
"acc_norm_stderr": 0.014588204105102203
|
||||
}
|
||||
},
|
||||
"versions": {
|
||||
"arc_challenge": 0
|
||||
},
|
||||
"config": {
|
||||
"model": "sparseml",
|
||||
"model_args": "pretrained=/nm/drive1/alexandre/zoo/llama2-7b-ultrachat200k_llama2_pretrain-base/training,dtype=float32",
|
||||
"num_fewshot": 25,
|
||||
"batch_size": "16",
|
||||
"batch_sizes": [],
|
||||
"device": "cuda:1",
|
||||
"no_cache": true,
|
||||
"limit": null,
|
||||
"bootstrap_iters": 100000,
|
||||
"description_dict": {}
|
||||
}
|
||||
}
|
||||
28
config.json
Normal file
28
config.json
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"_name_or_path": "neuralmagic/Llama-2-7b-ultrachat",
|
||||
"architectures": [
|
||||
"LlamaForCausalLM"
|
||||
],
|
||||
"attention_bias": false,
|
||||
"attention_dropout": 0.0,
|
||||
"bos_token_id": 1,
|
||||
"eos_token_id": 2,
|
||||
"hidden_act": "silu",
|
||||
"hidden_size": 4096,
|
||||
"initializer_range": 0.02,
|
||||
"intermediate_size": 11008,
|
||||
"max_position_embeddings": 4096,
|
||||
"model_type": "llama",
|
||||
"num_attention_heads": 32,
|
||||
"num_hidden_layers": 32,
|
||||
"num_key_value_heads": 32,
|
||||
"pretraining_tp": 1,
|
||||
"rms_norm_eps": 1e-05,
|
||||
"rope_scaling": null,
|
||||
"rope_theta": 10000.0,
|
||||
"tie_word_embeddings": false,
|
||||
"torch_dtype": "bfloat16",
|
||||
"transformers_version": "4.40.0",
|
||||
"use_cache": true,
|
||||
"vocab_size": 32000
|
||||
}
|
||||
1
configuration.json
Normal file
1
configuration.json
Normal file
@@ -0,0 +1 @@
|
||||
{"framework": "pytorch", "task": "text-generation", "allow_remote": true}
|
||||
6
generation_config.json
Normal file
6
generation_config.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"_from_model_config": true,
|
||||
"bos_token_id": 1,
|
||||
"eos_token_id": 2,
|
||||
"transformers_version": "4.40.0"
|
||||
}
|
||||
26
gsm8k_5shot.json
Normal file
26
gsm8k_5shot.json
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"results": {
|
||||
"gsm8k": {
|
||||
"acc": 0.1243366186504928,
|
||||
"acc_stderr": 0.00908888096202845
|
||||
}
|
||||
},
|
||||
"versions": {
|
||||
"gsm8k": 0
|
||||
},
|
||||
"config": {
|
||||
"model": "hf-causal-experimental",
|
||||
"model_args": {
|
||||
"pretrained": "/network/alexandre/research/llama2_7b_ultrachat/dense/dense_finetuning/dense_LR1e-4_E1/training",
|
||||
"trust_remote_code": true
|
||||
},
|
||||
"num_fewshot": 5,
|
||||
"batch_size": "8",
|
||||
"batch_sizes": [],
|
||||
"device": "cuda:3",
|
||||
"no_cache": true,
|
||||
"limit": null,
|
||||
"bootstrap_iters": 100000,
|
||||
"description_dict": {}
|
||||
}
|
||||
}
|
||||
26
gsm8k_5shot_bs8_bf32.json
Normal file
26
gsm8k_5shot_bs8_bf32.json
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"results": {
|
||||
"gsm8k": {
|
||||
"acc": 0.1243366186504928,
|
||||
"acc_stderr": 0.00908888096202845
|
||||
}
|
||||
},
|
||||
"versions": {
|
||||
"gsm8k": 0
|
||||
},
|
||||
"config": {
|
||||
"model": "hf-causal-experimental",
|
||||
"model_args": {
|
||||
"pretrained": "/nm/drive1/alexandre/zoo/llama2-7b-ultrachat200k_llama2_pretrain-base/training",
|
||||
"dtype": "float32"
|
||||
},
|
||||
"num_fewshot": 5,
|
||||
"batch_size": "8",
|
||||
"batch_sizes": [],
|
||||
"device": "cuda:7",
|
||||
"no_cache": true,
|
||||
"limit": null,
|
||||
"bootstrap_iters": 100000,
|
||||
"description_dict": {}
|
||||
}
|
||||
}
|
||||
26
gsm8k_5shot_bs8_fp32.json
Normal file
26
gsm8k_5shot_bs8_fp32.json
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"results": {
|
||||
"gsm8k": {
|
||||
"acc": 0.1243366186504928,
|
||||
"acc_stderr": 0.00908888096202845
|
||||
}
|
||||
},
|
||||
"versions": {
|
||||
"gsm8k": 0
|
||||
},
|
||||
"config": {
|
||||
"model": "hf-causal-experimental",
|
||||
"model_args": {
|
||||
"pretrained": "/nm/drive1/alexandre/zoo/llama2-7b-ultrachat200k_llama2_pretrain-base/training",
|
||||
"dtype": "float32"
|
||||
},
|
||||
"num_fewshot": 5,
|
||||
"batch_size": "8",
|
||||
"batch_sizes": [],
|
||||
"device": "cuda:7",
|
||||
"no_cache": true,
|
||||
"limit": null,
|
||||
"bootstrap_iters": 100000,
|
||||
"description_dict": {}
|
||||
}
|
||||
}
|
||||
25
hellaswag_10shot_bs16_fp32.json
Normal file
25
hellaswag_10shot_bs16_fp32.json
Normal file
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"results": {
|
||||
"hellaswag": {
|
||||
"acc": 0.5690101573391755,
|
||||
"acc_stderr": 0.004942026200279588,
|
||||
"acc_norm": 0.7590121489743079,
|
||||
"acc_norm_stderr": 0.004268088879039827
|
||||
}
|
||||
},
|
||||
"versions": {
|
||||
"hellaswag": 0
|
||||
},
|
||||
"config": {
|
||||
"model": "sparseml",
|
||||
"model_args": "pretrained=/nm/drive1/alexandre/zoo/llama2-7b-ultrachat200k_llama2_pretrain-base/training,dtype=float32",
|
||||
"num_fewshot": 10,
|
||||
"batch_size": "16",
|
||||
"batch_sizes": [],
|
||||
"device": "cuda:4",
|
||||
"no_cache": true,
|
||||
"limit": null,
|
||||
"bootstrap_iters": 100000,
|
||||
"description_dict": {}
|
||||
}
|
||||
}
|
||||
420
mmlu_5shot.json
Normal file
420
mmlu_5shot.json
Normal file
@@ -0,0 +1,420 @@
|
||||
{
|
||||
"results": {
|
||||
"hendrycksTest-abstract_algebra": {
|
||||
"acc": 0.31,
|
||||
"acc_stderr": 0.04648231987117316,
|
||||
"acc_norm": 0.31,
|
||||
"acc_norm_stderr": 0.04648231987117316
|
||||
},
|
||||
"hendrycksTest-anatomy": {
|
||||
"acc": 0.43703703703703706,
|
||||
"acc_stderr": 0.04284958639753399,
|
||||
"acc_norm": 0.43703703703703706,
|
||||
"acc_norm_stderr": 0.04284958639753399
|
||||
},
|
||||
"hendrycksTest-astronomy": {
|
||||
"acc": 0.40789473684210525,
|
||||
"acc_stderr": 0.03999309712777471,
|
||||
"acc_norm": 0.40789473684210525,
|
||||
"acc_norm_stderr": 0.03999309712777471
|
||||
},
|
||||
"hendrycksTest-business_ethics": {
|
||||
"acc": 0.46,
|
||||
"acc_stderr": 0.05009082659620332,
|
||||
"acc_norm": 0.46,
|
||||
"acc_norm_stderr": 0.05009082659620332
|
||||
},
|
||||
"hendrycksTest-clinical_knowledge": {
|
||||
"acc": 0.4830188679245283,
|
||||
"acc_stderr": 0.030755120364119905,
|
||||
"acc_norm": 0.4830188679245283,
|
||||
"acc_norm_stderr": 0.030755120364119905
|
||||
},
|
||||
"hendrycksTest-college_biology": {
|
||||
"acc": 0.4652777777777778,
|
||||
"acc_stderr": 0.04171115858181618,
|
||||
"acc_norm": 0.4652777777777778,
|
||||
"acc_norm_stderr": 0.04171115858181618
|
||||
},
|
||||
"hendrycksTest-college_chemistry": {
|
||||
"acc": 0.27,
|
||||
"acc_stderr": 0.044619604333847394,
|
||||
"acc_norm": 0.27,
|
||||
"acc_norm_stderr": 0.044619604333847394
|
||||
},
|
||||
"hendrycksTest-college_computer_science": {
|
||||
"acc": 0.39,
|
||||
"acc_stderr": 0.04902071300001975,
|
||||
"acc_norm": 0.39,
|
||||
"acc_norm_stderr": 0.04902071300001975
|
||||
},
|
||||
"hendrycksTest-college_mathematics": {
|
||||
"acc": 0.29,
|
||||
"acc_stderr": 0.045604802157206845,
|
||||
"acc_norm": 0.29,
|
||||
"acc_norm_stderr": 0.045604802157206845
|
||||
},
|
||||
"hendrycksTest-college_medicine": {
|
||||
"acc": 0.36416184971098264,
|
||||
"acc_stderr": 0.03669072477416907,
|
||||
"acc_norm": 0.36416184971098264,
|
||||
"acc_norm_stderr": 0.03669072477416907
|
||||
},
|
||||
"hendrycksTest-college_physics": {
|
||||
"acc": 0.2549019607843137,
|
||||
"acc_stderr": 0.043364327079931785,
|
||||
"acc_norm": 0.2549019607843137,
|
||||
"acc_norm_stderr": 0.043364327079931785
|
||||
},
|
||||
"hendrycksTest-computer_security": {
|
||||
"acc": 0.55,
|
||||
"acc_stderr": 0.05,
|
||||
"acc_norm": 0.55,
|
||||
"acc_norm_stderr": 0.05
|
||||
},
|
||||
"hendrycksTest-conceptual_physics": {
|
||||
"acc": 0.4085106382978723,
|
||||
"acc_stderr": 0.03213418026701576,
|
||||
"acc_norm": 0.4085106382978723,
|
||||
"acc_norm_stderr": 0.03213418026701576
|
||||
},
|
||||
"hendrycksTest-econometrics": {
|
||||
"acc": 0.2894736842105263,
|
||||
"acc_stderr": 0.04266339443159394,
|
||||
"acc_norm": 0.2894736842105263,
|
||||
"acc_norm_stderr": 0.04266339443159394
|
||||
},
|
||||
"hendrycksTest-electrical_engineering": {
|
||||
"acc": 0.4206896551724138,
|
||||
"acc_stderr": 0.0411391498118926,
|
||||
"acc_norm": 0.4206896551724138,
|
||||
"acc_norm_stderr": 0.0411391498118926
|
||||
},
|
||||
"hendrycksTest-elementary_mathematics": {
|
||||
"acc": 0.291005291005291,
|
||||
"acc_stderr": 0.02339382650048487,
|
||||
"acc_norm": 0.291005291005291,
|
||||
"acc_norm_stderr": 0.02339382650048487
|
||||
},
|
||||
"hendrycksTest-formal_logic": {
|
||||
"acc": 0.23015873015873015,
|
||||
"acc_stderr": 0.037649508797906045,
|
||||
"acc_norm": 0.23015873015873015,
|
||||
"acc_norm_stderr": 0.037649508797906045
|
||||
},
|
||||
"hendrycksTest-global_facts": {
|
||||
"acc": 0.34,
|
||||
"acc_stderr": 0.04760952285695236,
|
||||
"acc_norm": 0.34,
|
||||
"acc_norm_stderr": 0.04760952285695236
|
||||
},
|
||||
"hendrycksTest-high_school_biology": {
|
||||
"acc": 0.4870967741935484,
|
||||
"acc_stderr": 0.028434533152681855,
|
||||
"acc_norm": 0.4870967741935484,
|
||||
"acc_norm_stderr": 0.028434533152681855
|
||||
},
|
||||
"hendrycksTest-high_school_chemistry": {
|
||||
"acc": 0.33497536945812806,
|
||||
"acc_stderr": 0.033208527423483104,
|
||||
"acc_norm": 0.33497536945812806,
|
||||
"acc_norm_stderr": 0.033208527423483104
|
||||
},
|
||||
"hendrycksTest-high_school_computer_science": {
|
||||
"acc": 0.44,
|
||||
"acc_stderr": 0.04988876515698589,
|
||||
"acc_norm": 0.44,
|
||||
"acc_norm_stderr": 0.04988876515698589
|
||||
},
|
||||
"hendrycksTest-high_school_european_history": {
|
||||
"acc": 0.6363636363636364,
|
||||
"acc_stderr": 0.03756335775187897,
|
||||
"acc_norm": 0.6363636363636364,
|
||||
"acc_norm_stderr": 0.03756335775187897
|
||||
},
|
||||
"hendrycksTest-high_school_geography": {
|
||||
"acc": 0.5202020202020202,
|
||||
"acc_stderr": 0.03559443565563918,
|
||||
"acc_norm": 0.5202020202020202,
|
||||
"acc_norm_stderr": 0.03559443565563918
|
||||
},
|
||||
"hendrycksTest-high_school_government_and_politics": {
|
||||
"acc": 0.6424870466321243,
|
||||
"acc_stderr": 0.034588160421810114,
|
||||
"acc_norm": 0.6424870466321243,
|
||||
"acc_norm_stderr": 0.034588160421810114
|
||||
},
|
||||
"hendrycksTest-high_school_macroeconomics": {
|
||||
"acc": 0.4025641025641026,
|
||||
"acc_stderr": 0.02486499515976775,
|
||||
"acc_norm": 0.4025641025641026,
|
||||
"acc_norm_stderr": 0.02486499515976775
|
||||
},
|
||||
"hendrycksTest-high_school_mathematics": {
|
||||
"acc": 0.25925925925925924,
|
||||
"acc_stderr": 0.026719240783712177,
|
||||
"acc_norm": 0.25925925925925924,
|
||||
"acc_norm_stderr": 0.026719240783712177
|
||||
},
|
||||
"hendrycksTest-high_school_microeconomics": {
|
||||
"acc": 0.4411764705882353,
|
||||
"acc_stderr": 0.0322529423239964,
|
||||
"acc_norm": 0.4411764705882353,
|
||||
"acc_norm_stderr": 0.0322529423239964
|
||||
},
|
||||
"hendrycksTest-high_school_physics": {
|
||||
"acc": 0.23841059602649006,
|
||||
"acc_stderr": 0.03479185572599661,
|
||||
"acc_norm": 0.23841059602649006,
|
||||
"acc_norm_stderr": 0.03479185572599661
|
||||
},
|
||||
"hendrycksTest-high_school_psychology": {
|
||||
"acc": 0.6165137614678899,
|
||||
"acc_stderr": 0.020847156641915984,
|
||||
"acc_norm": 0.6165137614678899,
|
||||
"acc_norm_stderr": 0.020847156641915984
|
||||
},
|
||||
"hendrycksTest-high_school_statistics": {
|
||||
"acc": 0.27314814814814814,
|
||||
"acc_stderr": 0.03038805130167812,
|
||||
"acc_norm": 0.27314814814814814,
|
||||
"acc_norm_stderr": 0.03038805130167812
|
||||
},
|
||||
"hendrycksTest-high_school_us_history": {
|
||||
"acc": 0.6470588235294118,
|
||||
"acc_stderr": 0.03354092437591518,
|
||||
"acc_norm": 0.6470588235294118,
|
||||
"acc_norm_stderr": 0.03354092437591518
|
||||
},
|
||||
"hendrycksTest-high_school_world_history": {
|
||||
"acc": 0.6455696202531646,
|
||||
"acc_stderr": 0.031137304297185805,
|
||||
"acc_norm": 0.6455696202531646,
|
||||
"acc_norm_stderr": 0.031137304297185805
|
||||
},
|
||||
"hendrycksTest-human_aging": {
|
||||
"acc": 0.547085201793722,
|
||||
"acc_stderr": 0.03340867501923324,
|
||||
"acc_norm": 0.547085201793722,
|
||||
"acc_norm_stderr": 0.03340867501923324
|
||||
},
|
||||
"hendrycksTest-human_sexuality": {
|
||||
"acc": 0.549618320610687,
|
||||
"acc_stderr": 0.04363643698524779,
|
||||
"acc_norm": 0.549618320610687,
|
||||
"acc_norm_stderr": 0.04363643698524779
|
||||
},
|
||||
"hendrycksTest-international_law": {
|
||||
"acc": 0.628099173553719,
|
||||
"acc_stderr": 0.04412015806624504,
|
||||
"acc_norm": 0.628099173553719,
|
||||
"acc_norm_stderr": 0.04412015806624504
|
||||
},
|
||||
"hendrycksTest-jurisprudence": {
|
||||
"acc": 0.49074074074074076,
|
||||
"acc_stderr": 0.04832853553437055,
|
||||
"acc_norm": 0.49074074074074076,
|
||||
"acc_norm_stderr": 0.04832853553437055
|
||||
},
|
||||
"hendrycksTest-logical_fallacies": {
|
||||
"acc": 0.49079754601226994,
|
||||
"acc_stderr": 0.03927705600787443,
|
||||
"acc_norm": 0.49079754601226994,
|
||||
"acc_norm_stderr": 0.03927705600787443
|
||||
},
|
||||
"hendrycksTest-machine_learning": {
|
||||
"acc": 0.42857142857142855,
|
||||
"acc_stderr": 0.04697113923010212,
|
||||
"acc_norm": 0.42857142857142855,
|
||||
"acc_norm_stderr": 0.04697113923010212
|
||||
},
|
||||
"hendrycksTest-management": {
|
||||
"acc": 0.5339805825242718,
|
||||
"acc_stderr": 0.0493929144727348,
|
||||
"acc_norm": 0.5339805825242718,
|
||||
"acc_norm_stderr": 0.0493929144727348
|
||||
},
|
||||
"hendrycksTest-marketing": {
|
||||
"acc": 0.7136752136752137,
|
||||
"acc_stderr": 0.02961432369045665,
|
||||
"acc_norm": 0.7136752136752137,
|
||||
"acc_norm_stderr": 0.02961432369045665
|
||||
},
|
||||
"hendrycksTest-medical_genetics": {
|
||||
"acc": 0.55,
|
||||
"acc_stderr": 0.04999999999999999,
|
||||
"acc_norm": 0.55,
|
||||
"acc_norm_stderr": 0.04999999999999999
|
||||
},
|
||||
"hendrycksTest-miscellaneous": {
|
||||
"acc": 0.6219667943805874,
|
||||
"acc_stderr": 0.017339844462104594,
|
||||
"acc_norm": 0.6219667943805874,
|
||||
"acc_norm_stderr": 0.017339844462104594
|
||||
},
|
||||
"hendrycksTest-moral_disputes": {
|
||||
"acc": 0.5317919075144508,
|
||||
"acc_stderr": 0.02686462436675664,
|
||||
"acc_norm": 0.5317919075144508,
|
||||
"acc_norm_stderr": 0.02686462436675664
|
||||
},
|
||||
"hendrycksTest-moral_scenarios": {
|
||||
"acc": 0.2424581005586592,
|
||||
"acc_stderr": 0.014333522059217892,
|
||||
"acc_norm": 0.2424581005586592,
|
||||
"acc_norm_stderr": 0.014333522059217892
|
||||
},
|
||||
"hendrycksTest-nutrition": {
|
||||
"acc": 0.477124183006536,
|
||||
"acc_stderr": 0.028599936776089782,
|
||||
"acc_norm": 0.477124183006536,
|
||||
"acc_norm_stderr": 0.028599936776089782
|
||||
},
|
||||
"hendrycksTest-philosophy": {
|
||||
"acc": 0.5530546623794212,
|
||||
"acc_stderr": 0.028237769422085328,
|
||||
"acc_norm": 0.5530546623794212,
|
||||
"acc_norm_stderr": 0.028237769422085328
|
||||
},
|
||||
"hendrycksTest-prehistory": {
|
||||
"acc": 0.5308641975308642,
|
||||
"acc_stderr": 0.027767689606833925,
|
||||
"acc_norm": 0.5308641975308642,
|
||||
"acc_norm_stderr": 0.027767689606833925
|
||||
},
|
||||
"hendrycksTest-professional_accounting": {
|
||||
"acc": 0.375886524822695,
|
||||
"acc_stderr": 0.028893955412115882,
|
||||
"acc_norm": 0.375886524822695,
|
||||
"acc_norm_stderr": 0.028893955412115882
|
||||
},
|
||||
"hendrycksTest-professional_law": {
|
||||
"acc": 0.35723598435462844,
|
||||
"acc_stderr": 0.012238615750316505,
|
||||
"acc_norm": 0.35723598435462844,
|
||||
"acc_norm_stderr": 0.012238615750316505
|
||||
},
|
||||
"hendrycksTest-professional_medicine": {
|
||||
"acc": 0.4227941176470588,
|
||||
"acc_stderr": 0.03000856284500349,
|
||||
"acc_norm": 0.4227941176470588,
|
||||
"acc_norm_stderr": 0.03000856284500349
|
||||
},
|
||||
"hendrycksTest-professional_psychology": {
|
||||
"acc": 0.4591503267973856,
|
||||
"acc_stderr": 0.020160213617222516,
|
||||
"acc_norm": 0.4591503267973856,
|
||||
"acc_norm_stderr": 0.020160213617222516
|
||||
},
|
||||
"hendrycksTest-public_relations": {
|
||||
"acc": 0.5454545454545454,
|
||||
"acc_stderr": 0.04769300568972744,
|
||||
"acc_norm": 0.5454545454545454,
|
||||
"acc_norm_stderr": 0.04769300568972744
|
||||
},
|
||||
"hendrycksTest-security_studies": {
|
||||
"acc": 0.49795918367346936,
|
||||
"acc_stderr": 0.0320089533497105,
|
||||
"acc_norm": 0.49795918367346936,
|
||||
"acc_norm_stderr": 0.0320089533497105
|
||||
},
|
||||
"hendrycksTest-sociology": {
|
||||
"acc": 0.6318407960199005,
|
||||
"acc_stderr": 0.03410410565495301,
|
||||
"acc_norm": 0.6318407960199005,
|
||||
"acc_norm_stderr": 0.03410410565495301
|
||||
},
|
||||
"hendrycksTest-us_foreign_policy": {
|
||||
"acc": 0.67,
|
||||
"acc_stderr": 0.04725815626252609,
|
||||
"acc_norm": 0.67,
|
||||
"acc_norm_stderr": 0.04725815626252609
|
||||
},
|
||||
"hendrycksTest-virology": {
|
||||
"acc": 0.41566265060240964,
|
||||
"acc_stderr": 0.03836722176598053,
|
||||
"acc_norm": 0.41566265060240964,
|
||||
"acc_norm_stderr": 0.03836722176598053
|
||||
},
|
||||
"hendrycksTest-world_religions": {
|
||||
"acc": 0.6549707602339181,
|
||||
"acc_stderr": 0.036459813773888065,
|
||||
"acc_norm": 0.6549707602339181,
|
||||
"acc_norm_stderr": 0.036459813773888065
|
||||
}
|
||||
},
|
||||
"versions": {
|
||||
"hendrycksTest-abstract_algebra": 1,
|
||||
"hendrycksTest-anatomy": 1,
|
||||
"hendrycksTest-astronomy": 1,
|
||||
"hendrycksTest-business_ethics": 1,
|
||||
"hendrycksTest-clinical_knowledge": 1,
|
||||
"hendrycksTest-college_biology": 1,
|
||||
"hendrycksTest-college_chemistry": 1,
|
||||
"hendrycksTest-college_computer_science": 1,
|
||||
"hendrycksTest-college_mathematics": 1,
|
||||
"hendrycksTest-college_medicine": 1,
|
||||
"hendrycksTest-college_physics": 1,
|
||||
"hendrycksTest-computer_security": 1,
|
||||
"hendrycksTest-conceptual_physics": 1,
|
||||
"hendrycksTest-econometrics": 1,
|
||||
"hendrycksTest-electrical_engineering": 1,
|
||||
"hendrycksTest-elementary_mathematics": 1,
|
||||
"hendrycksTest-formal_logic": 1,
|
||||
"hendrycksTest-global_facts": 1,
|
||||
"hendrycksTest-high_school_biology": 1,
|
||||
"hendrycksTest-high_school_chemistry": 1,
|
||||
"hendrycksTest-high_school_computer_science": 1,
|
||||
"hendrycksTest-high_school_european_history": 1,
|
||||
"hendrycksTest-high_school_geography": 1,
|
||||
"hendrycksTest-high_school_government_and_politics": 1,
|
||||
"hendrycksTest-high_school_macroeconomics": 1,
|
||||
"hendrycksTest-high_school_mathematics": 1,
|
||||
"hendrycksTest-high_school_microeconomics": 1,
|
||||
"hendrycksTest-high_school_physics": 1,
|
||||
"hendrycksTest-high_school_psychology": 1,
|
||||
"hendrycksTest-high_school_statistics": 1,
|
||||
"hendrycksTest-high_school_us_history": 1,
|
||||
"hendrycksTest-high_school_world_history": 1,
|
||||
"hendrycksTest-human_aging": 1,
|
||||
"hendrycksTest-human_sexuality": 1,
|
||||
"hendrycksTest-international_law": 1,
|
||||
"hendrycksTest-jurisprudence": 1,
|
||||
"hendrycksTest-logical_fallacies": 1,
|
||||
"hendrycksTest-machine_learning": 1,
|
||||
"hendrycksTest-management": 1,
|
||||
"hendrycksTest-marketing": 1,
|
||||
"hendrycksTest-medical_genetics": 1,
|
||||
"hendrycksTest-miscellaneous": 1,
|
||||
"hendrycksTest-moral_disputes": 1,
|
||||
"hendrycksTest-moral_scenarios": 1,
|
||||
"hendrycksTest-nutrition": 1,
|
||||
"hendrycksTest-philosophy": 1,
|
||||
"hendrycksTest-prehistory": 1,
|
||||
"hendrycksTest-professional_accounting": 1,
|
||||
"hendrycksTest-professional_law": 1,
|
||||
"hendrycksTest-professional_medicine": 1,
|
||||
"hendrycksTest-professional_psychology": 1,
|
||||
"hendrycksTest-public_relations": 1,
|
||||
"hendrycksTest-security_studies": 1,
|
||||
"hendrycksTest-sociology": 1,
|
||||
"hendrycksTest-us_foreign_policy": 1,
|
||||
"hendrycksTest-virology": 1,
|
||||
"hendrycksTest-world_religions": 1
|
||||
},
|
||||
"config": {
|
||||
"model": "hf-causal-experimental",
|
||||
"model_args": {
|
||||
"pretrained": "/network/alexandre/research/llama2_7b_ultrachat/dense/dense_finetuning/dense_LR1e-4_E1/training",
|
||||
"trust_remote_code": true
|
||||
},
|
||||
"num_fewshot": 5,
|
||||
"batch_size": "4",
|
||||
"batch_sizes": [],
|
||||
"device": "cuda:5",
|
||||
"no_cache": true,
|
||||
"limit": null,
|
||||
"bootstrap_iters": 100000,
|
||||
"description_dict": {}
|
||||
}
|
||||
}
|
||||
417
mmlu_5shot_bs4_fp32.json
Normal file
417
mmlu_5shot_bs4_fp32.json
Normal file
@@ -0,0 +1,417 @@
|
||||
{
|
||||
"results": {
|
||||
"hendrycksTest-abstract_algebra": {
|
||||
"acc": 0.32,
|
||||
"acc_stderr": 0.046882617226215034,
|
||||
"acc_norm": 0.32,
|
||||
"acc_norm_stderr": 0.046882617226215034
|
||||
},
|
||||
"hendrycksTest-anatomy": {
|
||||
"acc": 0.4666666666666667,
|
||||
"acc_stderr": 0.043097329010363554,
|
||||
"acc_norm": 0.4666666666666667,
|
||||
"acc_norm_stderr": 0.043097329010363554
|
||||
},
|
||||
"hendrycksTest-astronomy": {
|
||||
"acc": 0.39473684210526316,
|
||||
"acc_stderr": 0.039777499346220734,
|
||||
"acc_norm": 0.39473684210526316,
|
||||
"acc_norm_stderr": 0.039777499346220734
|
||||
},
|
||||
"hendrycksTest-business_ethics": {
|
||||
"acc": 0.49,
|
||||
"acc_stderr": 0.05024183937956912,
|
||||
"acc_norm": 0.49,
|
||||
"acc_norm_stderr": 0.05024183937956912
|
||||
},
|
||||
"hendrycksTest-clinical_knowledge": {
|
||||
"acc": 0.47547169811320755,
|
||||
"acc_stderr": 0.030735822206205608,
|
||||
"acc_norm": 0.47547169811320755,
|
||||
"acc_norm_stderr": 0.030735822206205608
|
||||
},
|
||||
"hendrycksTest-college_biology": {
|
||||
"acc": 0.4583333333333333,
|
||||
"acc_stderr": 0.04166666666666666,
|
||||
"acc_norm": 0.4583333333333333,
|
||||
"acc_norm_stderr": 0.04166666666666666
|
||||
},
|
||||
"hendrycksTest-college_chemistry": {
|
||||
"acc": 0.29,
|
||||
"acc_stderr": 0.04560480215720684,
|
||||
"acc_norm": 0.29,
|
||||
"acc_norm_stderr": 0.04560480215720684
|
||||
},
|
||||
"hendrycksTest-college_computer_science": {
|
||||
"acc": 0.38,
|
||||
"acc_stderr": 0.048783173121456316,
|
||||
"acc_norm": 0.38,
|
||||
"acc_norm_stderr": 0.048783173121456316
|
||||
},
|
||||
"hendrycksTest-college_mathematics": {
|
||||
"acc": 0.25,
|
||||
"acc_stderr": 0.04351941398892446,
|
||||
"acc_norm": 0.25,
|
||||
"acc_norm_stderr": 0.04351941398892446
|
||||
},
|
||||
"hendrycksTest-college_medicine": {
|
||||
"acc": 0.4046242774566474,
|
||||
"acc_stderr": 0.03742461193887248,
|
||||
"acc_norm": 0.4046242774566474,
|
||||
"acc_norm_stderr": 0.03742461193887248
|
||||
},
|
||||
"hendrycksTest-college_physics": {
|
||||
"acc": 0.24509803921568626,
|
||||
"acc_stderr": 0.042801058373643966,
|
||||
"acc_norm": 0.24509803921568626,
|
||||
"acc_norm_stderr": 0.042801058373643966
|
||||
},
|
||||
"hendrycksTest-computer_security": {
|
||||
"acc": 0.54,
|
||||
"acc_stderr": 0.05009082659620332,
|
||||
"acc_norm": 0.54,
|
||||
"acc_norm_stderr": 0.05009082659620332
|
||||
},
|
||||
"hendrycksTest-conceptual_physics": {
|
||||
"acc": 0.40425531914893614,
|
||||
"acc_stderr": 0.03208115750788684,
|
||||
"acc_norm": 0.40425531914893614,
|
||||
"acc_norm_stderr": 0.03208115750788684
|
||||
},
|
||||
"hendrycksTest-econometrics": {
|
||||
"acc": 0.3157894736842105,
|
||||
"acc_stderr": 0.043727482902780064,
|
||||
"acc_norm": 0.3157894736842105,
|
||||
"acc_norm_stderr": 0.043727482902780064
|
||||
},
|
||||
"hendrycksTest-electrical_engineering": {
|
||||
"acc": 0.4413793103448276,
|
||||
"acc_stderr": 0.04137931034482757,
|
||||
"acc_norm": 0.4413793103448276,
|
||||
"acc_norm_stderr": 0.04137931034482757
|
||||
},
|
||||
"hendrycksTest-elementary_mathematics": {
|
||||
"acc": 0.2830687830687831,
|
||||
"acc_stderr": 0.023201392938194974,
|
||||
"acc_norm": 0.2830687830687831,
|
||||
"acc_norm_stderr": 0.023201392938194974
|
||||
},
|
||||
"hendrycksTest-formal_logic": {
|
||||
"acc": 0.23015873015873015,
|
||||
"acc_stderr": 0.037649508797906045,
|
||||
"acc_norm": 0.23015873015873015,
|
||||
"acc_norm_stderr": 0.037649508797906045
|
||||
},
|
||||
"hendrycksTest-global_facts": {
|
||||
"acc": 0.34,
|
||||
"acc_stderr": 0.04760952285695235,
|
||||
"acc_norm": 0.34,
|
||||
"acc_norm_stderr": 0.04760952285695235
|
||||
},
|
||||
"hendrycksTest-high_school_biology": {
|
||||
"acc": 0.47419354838709676,
|
||||
"acc_stderr": 0.028406095057653326,
|
||||
"acc_norm": 0.47419354838709676,
|
||||
"acc_norm_stderr": 0.028406095057653326
|
||||
},
|
||||
"hendrycksTest-high_school_chemistry": {
|
||||
"acc": 0.3251231527093596,
|
||||
"acc_stderr": 0.032957975663112704,
|
||||
"acc_norm": 0.3251231527093596,
|
||||
"acc_norm_stderr": 0.032957975663112704
|
||||
},
|
||||
"hendrycksTest-high_school_computer_science": {
|
||||
"acc": 0.44,
|
||||
"acc_stderr": 0.04988876515698589,
|
||||
"acc_norm": 0.44,
|
||||
"acc_norm_stderr": 0.04988876515698589
|
||||
},
|
||||
"hendrycksTest-high_school_european_history": {
|
||||
"acc": 0.6363636363636364,
|
||||
"acc_stderr": 0.03756335775187897,
|
||||
"acc_norm": 0.6363636363636364,
|
||||
"acc_norm_stderr": 0.03756335775187897
|
||||
},
|
||||
"hendrycksTest-high_school_geography": {
|
||||
"acc": 0.5404040404040404,
|
||||
"acc_stderr": 0.035507024651313425,
|
||||
"acc_norm": 0.5404040404040404,
|
||||
"acc_norm_stderr": 0.035507024651313425
|
||||
},
|
||||
"hendrycksTest-high_school_government_and_politics": {
|
||||
"acc": 0.6269430051813472,
|
||||
"acc_stderr": 0.03490205592048573,
|
||||
"acc_norm": 0.6269430051813472,
|
||||
"acc_norm_stderr": 0.03490205592048573
|
||||
},
|
||||
"hendrycksTest-high_school_macroeconomics": {
|
||||
"acc": 0.41025641025641024,
|
||||
"acc_stderr": 0.024939313906940784,
|
||||
"acc_norm": 0.41025641025641024,
|
||||
"acc_norm_stderr": 0.024939313906940784
|
||||
},
|
||||
"hendrycksTest-high_school_mathematics": {
|
||||
"acc": 0.2740740740740741,
|
||||
"acc_stderr": 0.027195934804085622,
|
||||
"acc_norm": 0.2740740740740741,
|
||||
"acc_norm_stderr": 0.027195934804085622
|
||||
},
|
||||
"hendrycksTest-high_school_microeconomics": {
|
||||
"acc": 0.42436974789915966,
|
||||
"acc_stderr": 0.03210479051015776,
|
||||
"acc_norm": 0.42436974789915966,
|
||||
"acc_norm_stderr": 0.03210479051015776
|
||||
},
|
||||
"hendrycksTest-high_school_physics": {
|
||||
"acc": 0.271523178807947,
|
||||
"acc_stderr": 0.03631329803969653,
|
||||
"acc_norm": 0.271523178807947,
|
||||
"acc_norm_stderr": 0.03631329803969653
|
||||
},
|
||||
"hendrycksTest-high_school_psychology": {
|
||||
"acc": 0.618348623853211,
|
||||
"acc_stderr": 0.020828148517022582,
|
||||
"acc_norm": 0.618348623853211,
|
||||
"acc_norm_stderr": 0.020828148517022582
|
||||
},
|
||||
"hendrycksTest-high_school_statistics": {
|
||||
"acc": 0.27314814814814814,
|
||||
"acc_stderr": 0.03038805130167812,
|
||||
"acc_norm": 0.27314814814814814,
|
||||
"acc_norm_stderr": 0.03038805130167812
|
||||
},
|
||||
"hendrycksTest-high_school_us_history": {
|
||||
"acc": 0.6470588235294118,
|
||||
"acc_stderr": 0.03354092437591518,
|
||||
"acc_norm": 0.6470588235294118,
|
||||
"acc_norm_stderr": 0.03354092437591518
|
||||
},
|
||||
"hendrycksTest-high_school_world_history": {
|
||||
"acc": 0.6371308016877637,
|
||||
"acc_stderr": 0.03129920825530213,
|
||||
"acc_norm": 0.6371308016877637,
|
||||
"acc_norm_stderr": 0.03129920825530213
|
||||
},
|
||||
"hendrycksTest-human_aging": {
|
||||
"acc": 0.5560538116591929,
|
||||
"acc_stderr": 0.03334625674242728,
|
||||
"acc_norm": 0.5560538116591929,
|
||||
"acc_norm_stderr": 0.03334625674242728
|
||||
},
|
||||
"hendrycksTest-human_sexuality": {
|
||||
"acc": 0.549618320610687,
|
||||
"acc_stderr": 0.04363643698524779,
|
||||
"acc_norm": 0.549618320610687,
|
||||
"acc_norm_stderr": 0.04363643698524779
|
||||
},
|
||||
"hendrycksTest-international_law": {
|
||||
"acc": 0.628099173553719,
|
||||
"acc_stderr": 0.04412015806624504,
|
||||
"acc_norm": 0.628099173553719,
|
||||
"acc_norm_stderr": 0.04412015806624504
|
||||
},
|
||||
"hendrycksTest-jurisprudence": {
|
||||
"acc": 0.48148148148148145,
|
||||
"acc_stderr": 0.04830366024635331,
|
||||
"acc_norm": 0.48148148148148145,
|
||||
"acc_norm_stderr": 0.04830366024635331
|
||||
},
|
||||
"hendrycksTest-logical_fallacies": {
|
||||
"acc": 0.5214723926380368,
|
||||
"acc_stderr": 0.03924746876751129,
|
||||
"acc_norm": 0.5214723926380368,
|
||||
"acc_norm_stderr": 0.03924746876751129
|
||||
},
|
||||
"hendrycksTest-machine_learning": {
|
||||
"acc": 0.42857142857142855,
|
||||
"acc_stderr": 0.04697113923010212,
|
||||
"acc_norm": 0.42857142857142855,
|
||||
"acc_norm_stderr": 0.04697113923010212
|
||||
},
|
||||
"hendrycksTest-management": {
|
||||
"acc": 0.5242718446601942,
|
||||
"acc_stderr": 0.049449010929737795,
|
||||
"acc_norm": 0.5242718446601942,
|
||||
"acc_norm_stderr": 0.049449010929737795
|
||||
},
|
||||
"hendrycksTest-marketing": {
|
||||
"acc": 0.7094017094017094,
|
||||
"acc_stderr": 0.02974504857267408,
|
||||
"acc_norm": 0.7094017094017094,
|
||||
"acc_norm_stderr": 0.02974504857267408
|
||||
},
|
||||
"hendrycksTest-medical_genetics": {
|
||||
"acc": 0.56,
|
||||
"acc_stderr": 0.04988876515698589,
|
||||
"acc_norm": 0.56,
|
||||
"acc_norm_stderr": 0.04988876515698589
|
||||
},
|
||||
"hendrycksTest-miscellaneous": {
|
||||
"acc": 0.6194125159642401,
|
||||
"acc_stderr": 0.017362564126075414,
|
||||
"acc_norm": 0.6194125159642401,
|
||||
"acc_norm_stderr": 0.017362564126075414
|
||||
},
|
||||
"hendrycksTest-moral_disputes": {
|
||||
"acc": 0.5260115606936416,
|
||||
"acc_stderr": 0.026882643434022885,
|
||||
"acc_norm": 0.5260115606936416,
|
||||
"acc_norm_stderr": 0.026882643434022885
|
||||
},
|
||||
"hendrycksTest-moral_scenarios": {
|
||||
"acc": 0.23798882681564246,
|
||||
"acc_stderr": 0.014242630070574911,
|
||||
"acc_norm": 0.23798882681564246,
|
||||
"acc_norm_stderr": 0.014242630070574911
|
||||
},
|
||||
"hendrycksTest-nutrition": {
|
||||
"acc": 0.4803921568627451,
|
||||
"acc_stderr": 0.028607893699576063,
|
||||
"acc_norm": 0.4803921568627451,
|
||||
"acc_norm_stderr": 0.028607893699576063
|
||||
},
|
||||
"hendrycksTest-philosophy": {
|
||||
"acc": 0.5594855305466238,
|
||||
"acc_stderr": 0.028196400574197426,
|
||||
"acc_norm": 0.5594855305466238,
|
||||
"acc_norm_stderr": 0.028196400574197426
|
||||
},
|
||||
"hendrycksTest-prehistory": {
|
||||
"acc": 0.5462962962962963,
|
||||
"acc_stderr": 0.0277012284685426,
|
||||
"acc_norm": 0.5462962962962963,
|
||||
"acc_norm_stderr": 0.0277012284685426
|
||||
},
|
||||
"hendrycksTest-professional_accounting": {
|
||||
"acc": 0.36524822695035464,
|
||||
"acc_stderr": 0.02872386385328128,
|
||||
"acc_norm": 0.36524822695035464,
|
||||
"acc_norm_stderr": 0.02872386385328128
|
||||
},
|
||||
"hendrycksTest-professional_law": {
|
||||
"acc": 0.36571056062581486,
|
||||
"acc_stderr": 0.012301028188840567,
|
||||
"acc_norm": 0.36571056062581486,
|
||||
"acc_norm_stderr": 0.012301028188840567
|
||||
},
|
||||
"hendrycksTest-professional_medicine": {
|
||||
"acc": 0.4411764705882353,
|
||||
"acc_stderr": 0.030161911930767105,
|
||||
"acc_norm": 0.4411764705882353,
|
||||
"acc_norm_stderr": 0.030161911930767105
|
||||
},
|
||||
"hendrycksTest-professional_psychology": {
|
||||
"acc": 0.44281045751633985,
|
||||
"acc_stderr": 0.020095083154577347,
|
||||
"acc_norm": 0.44281045751633985,
|
||||
"acc_norm_stderr": 0.020095083154577347
|
||||
},
|
||||
"hendrycksTest-public_relations": {
|
||||
"acc": 0.5727272727272728,
|
||||
"acc_stderr": 0.04738198703545483,
|
||||
"acc_norm": 0.5727272727272728,
|
||||
"acc_norm_stderr": 0.04738198703545483
|
||||
},
|
||||
"hendrycksTest-security_studies": {
|
||||
"acc": 0.49795918367346936,
|
||||
"acc_stderr": 0.0320089533497105,
|
||||
"acc_norm": 0.49795918367346936,
|
||||
"acc_norm_stderr": 0.0320089533497105
|
||||
},
|
||||
"hendrycksTest-sociology": {
|
||||
"acc": 0.6318407960199005,
|
||||
"acc_stderr": 0.03410410565495301,
|
||||
"acc_norm": 0.6318407960199005,
|
||||
"acc_norm_stderr": 0.03410410565495301
|
||||
},
|
||||
"hendrycksTest-us_foreign_policy": {
|
||||
"acc": 0.66,
|
||||
"acc_stderr": 0.04760952285695237,
|
||||
"acc_norm": 0.66,
|
||||
"acc_norm_stderr": 0.04760952285695237
|
||||
},
|
||||
"hendrycksTest-virology": {
|
||||
"acc": 0.4036144578313253,
|
||||
"acc_stderr": 0.038194861407583984,
|
||||
"acc_norm": 0.4036144578313253,
|
||||
"acc_norm_stderr": 0.038194861407583984
|
||||
},
|
||||
"hendrycksTest-world_religions": {
|
||||
"acc": 0.6432748538011696,
|
||||
"acc_stderr": 0.03674013002860954,
|
||||
"acc_norm": 0.6432748538011696,
|
||||
"acc_norm_stderr": 0.03674013002860954
|
||||
}
|
||||
},
|
||||
"versions": {
|
||||
"hendrycksTest-abstract_algebra": 1,
|
||||
"hendrycksTest-anatomy": 1,
|
||||
"hendrycksTest-astronomy": 1,
|
||||
"hendrycksTest-business_ethics": 1,
|
||||
"hendrycksTest-clinical_knowledge": 1,
|
||||
"hendrycksTest-college_biology": 1,
|
||||
"hendrycksTest-college_chemistry": 1,
|
||||
"hendrycksTest-college_computer_science": 1,
|
||||
"hendrycksTest-college_mathematics": 1,
|
||||
"hendrycksTest-college_medicine": 1,
|
||||
"hendrycksTest-college_physics": 1,
|
||||
"hendrycksTest-computer_security": 1,
|
||||
"hendrycksTest-conceptual_physics": 1,
|
||||
"hendrycksTest-econometrics": 1,
|
||||
"hendrycksTest-electrical_engineering": 1,
|
||||
"hendrycksTest-elementary_mathematics": 1,
|
||||
"hendrycksTest-formal_logic": 1,
|
||||
"hendrycksTest-global_facts": 1,
|
||||
"hendrycksTest-high_school_biology": 1,
|
||||
"hendrycksTest-high_school_chemistry": 1,
|
||||
"hendrycksTest-high_school_computer_science": 1,
|
||||
"hendrycksTest-high_school_european_history": 1,
|
||||
"hendrycksTest-high_school_geography": 1,
|
||||
"hendrycksTest-high_school_government_and_politics": 1,
|
||||
"hendrycksTest-high_school_macroeconomics": 1,
|
||||
"hendrycksTest-high_school_mathematics": 1,
|
||||
"hendrycksTest-high_school_microeconomics": 1,
|
||||
"hendrycksTest-high_school_physics": 1,
|
||||
"hendrycksTest-high_school_psychology": 1,
|
||||
"hendrycksTest-high_school_statistics": 1,
|
||||
"hendrycksTest-high_school_us_history": 1,
|
||||
"hendrycksTest-high_school_world_history": 1,
|
||||
"hendrycksTest-human_aging": 1,
|
||||
"hendrycksTest-human_sexuality": 1,
|
||||
"hendrycksTest-international_law": 1,
|
||||
"hendrycksTest-jurisprudence": 1,
|
||||
"hendrycksTest-logical_fallacies": 1,
|
||||
"hendrycksTest-machine_learning": 1,
|
||||
"hendrycksTest-management": 1,
|
||||
"hendrycksTest-marketing": 1,
|
||||
"hendrycksTest-medical_genetics": 1,
|
||||
"hendrycksTest-miscellaneous": 1,
|
||||
"hendrycksTest-moral_disputes": 1,
|
||||
"hendrycksTest-moral_scenarios": 1,
|
||||
"hendrycksTest-nutrition": 1,
|
||||
"hendrycksTest-philosophy": 1,
|
||||
"hendrycksTest-prehistory": 1,
|
||||
"hendrycksTest-professional_accounting": 1,
|
||||
"hendrycksTest-professional_law": 1,
|
||||
"hendrycksTest-professional_medicine": 1,
|
||||
"hendrycksTest-professional_psychology": 1,
|
||||
"hendrycksTest-public_relations": 1,
|
||||
"hendrycksTest-security_studies": 1,
|
||||
"hendrycksTest-sociology": 1,
|
||||
"hendrycksTest-us_foreign_policy": 1,
|
||||
"hendrycksTest-virology": 1,
|
||||
"hendrycksTest-world_religions": 1
|
||||
},
|
||||
"config": {
|
||||
"model": "sparseml",
|
||||
"model_args": "pretrained=/nm/drive1/alexandre/zoo/llama2-7b-ultrachat200k_llama2_pretrain-base/training,dtype=float32",
|
||||
"num_fewshot": 5,
|
||||
"batch_size": "4",
|
||||
"batch_sizes": [],
|
||||
"device": "cuda:7",
|
||||
"no_cache": true,
|
||||
"limit": null,
|
||||
"bootstrap_iters": 100000,
|
||||
"description_dict": {}
|
||||
}
|
||||
}
|
||||
3
model-00001-of-00003.safetensors
Normal file
3
model-00001-of-00003.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:aa65edf300a96ef30d4f3701a0f7844f949e61afd7843093d2b5afa94cf3304a
|
||||
size 4938985352
|
||||
3
model-00002-of-00003.safetensors
Normal file
3
model-00002-of-00003.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e878d0b160c80c746b6f1fecb7677bf7011cc932bde026097d895e3ed750d0d7
|
||||
size 4947390880
|
||||
3
model-00003-of-00003.safetensors
Normal file
3
model-00003-of-00003.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cd7be97ef1af1bff33409075a7735c292b14a1d412e712319d50482478bf0081
|
||||
size 3590488816
|
||||
298
model.safetensors.index.json
Normal file
298
model.safetensors.index.json
Normal file
@@ -0,0 +1,298 @@
|
||||
{
|
||||
"metadata": {
|
||||
"total_size": 13476831232
|
||||
},
|
||||
"weight_map": {
|
||||
"lm_head.weight": "model-00003-of-00003.safetensors",
|
||||
"model.embed_tokens.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.0.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.1.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.10.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.10.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.10.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.10.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.10.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.10.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.10.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.10.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.10.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.11.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.11.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.11.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.11.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.11.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.11.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.11.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.11.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.11.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.12.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.12.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.12.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.12.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.12.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.12.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.12.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.12.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.12.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.13.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.13.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.13.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.13.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.13.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.13.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.13.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.13.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.13.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.14.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.14.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.14.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.14.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.14.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.14.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.14.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.14.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.14.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.15.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.15.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.15.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.15.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.15.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.15.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.15.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.15.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.15.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.16.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.16.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.16.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.16.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.16.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.16.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.16.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.16.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.16.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.17.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.17.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.17.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.17.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.17.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.17.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.17.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.17.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.17.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.18.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.18.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.18.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.18.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.18.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.18.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.18.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.18.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.18.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.19.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.19.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.19.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.19.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.19.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.19.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.19.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.19.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.19.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.2.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.20.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.20.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.20.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.20.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.20.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.20.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.20.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.20.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.20.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.21.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.21.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.21.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.21.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.21.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.21.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.21.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.21.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.21.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.22.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.22.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.22.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.22.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.22.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.22.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.22.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.22.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.22.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.23.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.23.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.23.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.23.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.23.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.23.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.23.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.23.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.23.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
||||
"model.layers.24.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.24.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.24.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.24.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.24.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.24.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.24.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.24.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.24.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.25.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.25.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.25.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.25.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.25.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.25.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.25.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.25.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.25.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.26.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.26.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.26.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.26.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.26.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.26.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.26.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.26.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.26.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.27.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.27.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.27.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.27.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.27.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.27.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.27.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.27.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.27.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.28.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.28.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.28.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.28.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.28.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.28.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.28.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.28.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.28.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.29.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.29.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.29.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.29.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.29.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.29.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.29.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.29.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.29.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.3.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.30.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.30.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.30.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.30.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.30.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.30.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.30.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.30.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.30.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.31.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.31.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.31.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.31.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.31.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.31.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.31.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.31.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.31.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
||||
"model.layers.4.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.5.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.6.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.7.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.7.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.7.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.7.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.8.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.8.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.8.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.8.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.8.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.8.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.9.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.9.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.9.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.9.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.9.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.9.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.9.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.9.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.layers.9.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
||||
"model.norm.weight": "model-00003-of-00003.safetensors"
|
||||
}
|
||||
}
|
||||
23
special_tokens_map.json
Normal file
23
special_tokens_map.json
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"bos_token": {
|
||||
"content": "<s>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false
|
||||
},
|
||||
"eos_token": {
|
||||
"content": "</s>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false
|
||||
},
|
||||
"unk_token": {
|
||||
"content": "<unk>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false
|
||||
}
|
||||
}
|
||||
93391
tokenizer.json
Normal file
93391
tokenizer.json
Normal file
File diff suppressed because it is too large
Load Diff
3
tokenizer.model
Normal file
3
tokenizer.model
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9e556afd44213b6bd1be2b850ebbbd98f5481437a8021afaf58ee7fb1818d347
|
||||
size 499723
|
||||
41
tokenizer_config.json
Normal file
41
tokenizer_config.json
Normal file
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"add_bos_token": true,
|
||||
"add_eos_token": false,
|
||||
"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
|
||||
}
|
||||
},
|
||||
"bos_token": "<s>",
|
||||
"clean_up_tokenization_spaces": false,
|
||||
"eos_token": "</s>",
|
||||
"legacy": false,
|
||||
"model_max_length": 1000000000000000019884624838656,
|
||||
"pad_token": null,
|
||||
"padding_side": "right",
|
||||
"sp_model_kwargs": {},
|
||||
"tokenizer_class": "LlamaTokenizer",
|
||||
"unk_token": "<unk>",
|
||||
"use_default_system_prompt": false
|
||||
}
|
||||
28
truthfulqa_mc_0shot.json
Normal file
28
truthfulqa_mc_0shot.json
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"results": {
|
||||
"truthfulqa_mc": {
|
||||
"mc1": 0.31211750305997554,
|
||||
"mc1_stderr": 0.016220756769520926,
|
||||
"mc2": 0.44918598673219645,
|
||||
"mc2_stderr": 0.014886808872838312
|
||||
}
|
||||
},
|
||||
"versions": {
|
||||
"truthfulqa_mc": 1
|
||||
},
|
||||
"config": {
|
||||
"model": "hf-causal-experimental",
|
||||
"model_args": {
|
||||
"pretrained": "/network/alexandre/research/llama2_7b_ultrachat/dense/dense_finetuning/dense_LR1e-4_E1/training",
|
||||
"trust_remote_code": true
|
||||
},
|
||||
"num_fewshot": 0,
|
||||
"batch_size": "8",
|
||||
"batch_sizes": [],
|
||||
"device": "cuda:5",
|
||||
"no_cache": true,
|
||||
"limit": null,
|
||||
"bootstrap_iters": 100000,
|
||||
"description_dict": {}
|
||||
}
|
||||
}
|
||||
25
truthfulqa_mc_0shot_bs16_fp32.json
Normal file
25
truthfulqa_mc_0shot_bs16_fp32.json
Normal file
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"results": {
|
||||
"truthfulqa_mc": {
|
||||
"mc1": 0.3108935128518972,
|
||||
"mc1_stderr": 0.016203316673559693,
|
||||
"mc2": 0.44831514010134543,
|
||||
"mc2_stderr": 0.014913413696247348
|
||||
}
|
||||
},
|
||||
"versions": {
|
||||
"truthfulqa_mc": 1
|
||||
},
|
||||
"config": {
|
||||
"model": "sparseml",
|
||||
"model_args": "pretrained=/nm/drive1/alexandre/zoo/llama2-7b-ultrachat200k_llama2_pretrain-base/training,dtype=float32",
|
||||
"num_fewshot": 0,
|
||||
"batch_size": "16",
|
||||
"batch_sizes": [],
|
||||
"device": "cuda:3",
|
||||
"no_cache": true,
|
||||
"limit": null,
|
||||
"bootstrap_iters": 100000,
|
||||
"description_dict": {}
|
||||
}
|
||||
}
|
||||
23
winogrande_5shot_bs16_fp32.json
Normal file
23
winogrande_5shot_bs16_fp32.json
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"results": {
|
||||
"winogrande": {
|
||||
"acc": 0.7261247040252565,
|
||||
"acc_stderr": 0.012533292732620297
|
||||
}
|
||||
},
|
||||
"versions": {
|
||||
"winogrande": 0
|
||||
},
|
||||
"config": {
|
||||
"model": "sparseml",
|
||||
"model_args": "pretrained=/nm/drive1/alexandre/zoo/llama2-7b-ultrachat200k_llama2_pretrain-base/training,dtype=float32",
|
||||
"num_fewshot": 5,
|
||||
"batch_size": "16",
|
||||
"batch_sizes": [],
|
||||
"device": "cuda:3",
|
||||
"no_cache": true,
|
||||
"limit": null,
|
||||
"bootstrap_iters": 100000,
|
||||
"description_dict": {}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user