Files
chemllama-3B/README.md
ModelHub XC c5a8aba842 初始化项目,由ModelHub XC社区提供模型
Model: yerevann/ChemLlama-3B
Source: Original Platform
2026-07-07 20:31:08 +08:00

25 lines
542 B
Markdown

---
library_name: transformers
pipeline_tag: text-generation
---
# ChemLlama-3B (step 20000)
This repository contains a Hugging Face Transformers export of a model checkpoint at **step 20,000**.
## Files
- `model.safetensors`: model weights
- `config.json`: model config
- `tokenizer.json` / `tokenizer_config.json`: tokenizer
## Usage
```python
from transformers import AutoTokenizer, AutoModelForCausalLM
path = "yerevann/chemllama-3B"
tok = AutoTokenizer.from_pretrained(path)
model = AutoModelForCausalLM.from_pretrained(path)
```