初始化项目,由ModelHub XC社区提供模型
Model: yerevann/ChemLlama-3B Source: Original Platform
This commit is contained in:
24
README.md
Normal file
24
README.md
Normal file
@@ -0,0 +1,24 @@
|
||||
---
|
||||
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)
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user