--- 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) ```