File size: 2,519 Bytes
b9c1eca 500388b b9c1eca 500388b b9c1eca 500388b ea1f810 500388b 3a3b45b ea1f810 500388b 3a3b45b 500388b ea1f810 500388b 3a3b45b 500388b ea1f810 500388b 3a3b45b 500388b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | ---
language:
- en
license: apache-2.0
pipeline_tag: text-generation
library_name: transformers
datasets:
- HuggingFaceFW/fineweb-edu # 60%
- HuggingFaceTB/stack-edu # 30% (Python 子集)
- HuggingFaceTB/finemath # 10% (FineMath-4+)
tags:
- causal-lm
- 100m-parameters
- single-gpu-training
- flashattention2
- gqa
model-index:
- name: Rain-v2
results:
- task:
type: multiple-choice-qa
name: ARC-Easy (5-shot)
metrics:
- type: accuracy
value: 0.35-0.40
- task:
type: multiple-choice-qa
name: HellaSwag (5-shot)
metrics:
- type: accuracy
value: 0.28-0.30
- task:
type: multiple-choice-qa
name: PIQA (5-shot)
metrics:
- type: accuracy
value: 0.60
- task:
type: coreference-resolution
name: Winogrande (5-shot)
metrics:
- type: accuracy
value: 0.51-0.52
---
# Rain-v2
Rain-v2 是一个约 1 亿参数的英文自回归语言模型,在 RTX 4090 约两天内完成预训练,展示了在有限算力下从数据到模型的完整实践路径。
## 模型与训练配置
- 参数规模:≈100M
- 架构:32 层解码器,隐藏维 512,8 头 GQA(4 个 KV 头),RoPE,RMSNorm,SwiGLU,输入/输出权重共享
- 词表:自训 BPE,16,384 词,面向英文/代码/数学混合语料
- 上下文长度:1024
- 学习率调度:1% warmup + cosine decay
- 训练总量:≈6.64×10^8 tokens,总用时 ~40 小时 @ RTX 4090
## 数据配比
- FineWeb-Edu(高质量英文教育语料)60%
- Stack-Edu(Python 教学代码/问答子集)30%
- FineMath-4+(高质量数学/逻辑)10%
总量约 10 B。
## 评测摘要(5-shot)
- ARC-Easy:40%
- HellaSwag:30%
- PIQA:60%
- Winogrande: 51%
## 安全与限制
易输出错误事实或伪造信息。未经对齐,会生成偏见/有害/违法内容;请勿直接面向终端用户。
## 使用示例
```python
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
model = AutoModelForCausalLM.from_pretrained("raincandy-u/Rain-v2", torch_dtype=torch.bfloat16, device_map="auto")
tok = AutoTokenizer.from_pretrained("your-namespace/Rain-v2")
prompt = "Here's a fairy tale about a little pig. A long, long time ago, there was a little pig called "
inputs = tok(prompt, return_tensors="pt").to(model.device)
out = model.generate(**inputs, max_new_tokens=120, temperature=0.8, top_p=0.9)
print(tok.decode(out[0], skip_special_tokens=True))
``` |