初始化项目,由ModelHub XC社区提供模型
Model: lgaalves/gpt-2-xl_camel-ai-physics Source: Original Platform
This commit is contained in:
35
.gitattributes
vendored
Normal file
35
.gitattributes
vendored
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
*.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
|
||||||
82
README.md
Normal file
82
README.md
Normal file
@@ -0,0 +1,82 @@
|
|||||||
|
---
|
||||||
|
license: mit
|
||||||
|
datasets:
|
||||||
|
- lgaalves/camel-ai-physics
|
||||||
|
language:
|
||||||
|
- en
|
||||||
|
pipeline_tag: text-generation
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# gpt2-xl-camel-ai-physics (1.5B)
|
||||||
|
|
||||||
|
**lgaalves/gpt2-xl_camel-ai-physics** is an instruction fine-tuned model based on the GPT-2 transformer architecture.
|
||||||
|
|
||||||
|
|
||||||
|
### Benchmark Metrics
|
||||||
|
|
||||||
|
| Metric |lgaalves/gpt2-xl_camel-ai-physics |gpt2-xl (base) |
|
||||||
|
|-----------------------|-------|-------|
|
||||||
|
| Avg. | 36.51 | **36.66** |
|
||||||
|
| ARC (25-shot) | 29.52 | **30.29** |
|
||||||
|
| HellaSwag (10-shot) | 50.62 | **51.38** |
|
||||||
|
| MMLU (5-shot) | **26.79** | 26.43 |
|
||||||
|
| TruthfulQA (0-shot) | **39.12** | 38.54 |
|
||||||
|
|
||||||
|
|
||||||
|
We use state-of-the-art [Language Model Evaluation Harness](https://github.com/EleutherAI/lm-evaluation-harness) to run the benchmark tests above, using the same version as the HuggingFace LLM Leaderboard. Please see below for detailed instructions on reproducing benchmark results.
|
||||||
|
|
||||||
|
### Model Details
|
||||||
|
|
||||||
|
* **Trained by**: Luiz G A Alves
|
||||||
|
* **Model type:** **lgaalves/gpt2-xl_camel-ai-physics** is an auto-regressive language model based on the GPT-2 transformer architecture.
|
||||||
|
* **Language(s)**: English
|
||||||
|
|
||||||
|
### How to use:
|
||||||
|
|
||||||
|
```python
|
||||||
|
# Use a pipeline as a high-level helper
|
||||||
|
>>> from transformers import pipeline
|
||||||
|
>>> pipe = pipeline("text-generation", model="lgaalves/gpt2-xl_camel-ai-physics")
|
||||||
|
>>> question = "What is a large language model?"
|
||||||
|
>>> answer = pipe(question)
|
||||||
|
>>> print(answer[0]['generated_text'])
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
or, you can load the model direclty using:
|
||||||
|
|
||||||
|
```python
|
||||||
|
# Load model directly
|
||||||
|
from transformers import AutoTokenizer, AutoModelForCausalLM
|
||||||
|
|
||||||
|
tokenizer = AutoTokenizer.from_pretrained("lgaalves/gpt2-xl_camel-ai-physics")
|
||||||
|
model = AutoModelForCausalLM.from_pretrained("lgaalves/gpt2-xl_camel-ai-physics")
|
||||||
|
```
|
||||||
|
|
||||||
|
### Training Dataset
|
||||||
|
|
||||||
|
`lgaalves/gpt2-xl_camel-ai-physics` trained on the GPT4 generated dataset [lgaalves/camel-physics](https://huggingface.co/datasets/lgaalves/camel-physics).
|
||||||
|
|
||||||
|
### Training Procedure
|
||||||
|
|
||||||
|
`lgaalves/gpt2-xl_camel-ai-physics` was instruction fine-tuned using LoRA on 1 Tesla V100-SXM2-16GB. It took about 3 hours to train it.
|
||||||
|
|
||||||
|
|
||||||
|
# Intended uses, limitations & biases
|
||||||
|
|
||||||
|
You can use the raw model for text generation or fine-tune it to a downstream task. The model was not extensively tested and may produce false information. It contains a lot of unfiltered content from the internet, which is far from neutral.
|
||||||
|
# [Open LLM Leaderboard Evaluation Results](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard)
|
||||||
|
Detailed results can be found [here](https://huggingface.co/datasets/open-llm-leaderboard/details_lgaalves__gpt-2-xl_camel-ai-physics)
|
||||||
|
|
||||||
|
| Metric | Value |
|
||||||
|
|-----------------------|---------------------------|
|
||||||
|
| Avg. | 29.9 |
|
||||||
|
| ARC (25-shot) | 29.52 |
|
||||||
|
| HellaSwag (10-shot) | 50.62 |
|
||||||
|
| MMLU (5-shot) | 26.79 |
|
||||||
|
| TruthfulQA (0-shot) | 39.12 |
|
||||||
|
| Winogrande (5-shot) | 57.54 |
|
||||||
|
| GSM8K (5-shot) | 0.15 |
|
||||||
|
| DROP (3-shot) | 5.57 |
|
||||||
40
config.json
Normal file
40
config.json
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
{
|
||||||
|
"_name_or_path": "gpt2-xl",
|
||||||
|
"activation_function": "gelu_new",
|
||||||
|
"architectures": [
|
||||||
|
"GPT2LMHeadModel"
|
||||||
|
],
|
||||||
|
"attn_pdrop": 0.1,
|
||||||
|
"bos_token_id": 50256,
|
||||||
|
"embd_pdrop": 0.1,
|
||||||
|
"eos_token_id": 50256,
|
||||||
|
"initializer_range": 0.02,
|
||||||
|
"layer_norm_epsilon": 1e-05,
|
||||||
|
"model_type": "gpt2",
|
||||||
|
"n_ctx": 1024,
|
||||||
|
"n_embd": 1600,
|
||||||
|
"n_head": 25,
|
||||||
|
"n_inner": null,
|
||||||
|
"n_layer": 48,
|
||||||
|
"n_positions": 1024,
|
||||||
|
"output_past": true,
|
||||||
|
"reorder_and_upcast_attn": false,
|
||||||
|
"resid_pdrop": 0.1,
|
||||||
|
"scale_attn_by_inverse_layer_idx": false,
|
||||||
|
"scale_attn_weights": true,
|
||||||
|
"summary_activation": null,
|
||||||
|
"summary_first_dropout": 0.1,
|
||||||
|
"summary_proj_to_labels": true,
|
||||||
|
"summary_type": "cls_index",
|
||||||
|
"summary_use_proj": true,
|
||||||
|
"task_specific_params": {
|
||||||
|
"text-generation": {
|
||||||
|
"do_sample": true,
|
||||||
|
"max_length": 50
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"torch_dtype": "float16",
|
||||||
|
"transformers_version": "4.32.1",
|
||||||
|
"use_cache": true,
|
||||||
|
"vocab_size": 50257
|
||||||
|
}
|
||||||
6
generation_config.json
Normal file
6
generation_config.json
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"_from_model_config": true,
|
||||||
|
"bos_token_id": 50256,
|
||||||
|
"eos_token_id": 50256,
|
||||||
|
"transformers_version": "4.32.1"
|
||||||
|
}
|
||||||
50001
merges.txt
Normal file
50001
merges.txt
Normal file
File diff suppressed because it is too large
Load Diff
3
model.safetensors
Normal file
3
model.safetensors
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:72ad5001aa84aef77bc3b8250a497e5b941edeb5fddaf1ce28988c1413514fc0
|
||||||
|
size 3115283128
|
||||||
3
pytorch_model.bin
Normal file
3
pytorch_model.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:fb001d6f73b30b958362926ce156addb824f25ba9d679074663ffb98ef571220
|
||||||
|
size 3115411933
|
||||||
6
special_tokens_map.json
Normal file
6
special_tokens_map.json
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"bos_token": "<|endoftext|>",
|
||||||
|
"eos_token": "<|endoftext|>",
|
||||||
|
"pad_token": "<|endoftext|>",
|
||||||
|
"unk_token": "<|endoftext|>"
|
||||||
|
}
|
||||||
100305
tokenizer.json
Normal file
100305
tokenizer.json
Normal file
File diff suppressed because it is too large
Load Diff
9
tokenizer_config.json
Normal file
9
tokenizer_config.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"add_prefix_space": false,
|
||||||
|
"bos_token": "<|endoftext|>",
|
||||||
|
"clean_up_tokenization_spaces": true,
|
||||||
|
"eos_token": "<|endoftext|>",
|
||||||
|
"model_max_length": 1024,
|
||||||
|
"tokenizer_class": "GPT2Tokenizer",
|
||||||
|
"unk_token": "<|endoftext|>"
|
||||||
|
}
|
||||||
1
vocab.json
Normal file
1
vocab.json
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user