初始化项目,由ModelHub XC社区提供模型
Model: mnoukhov/nuevamol-80m-base Source: Original Platform
This commit is contained in:
27
README.md
Normal file
27
README.md
Normal file
@@ -0,0 +1,27 @@
|
||||
---
|
||||
library_name: transformers
|
||||
model_name: nuevamol-80m-base
|
||||
tags:
|
||||
- chemistry
|
||||
- molecular-generation
|
||||
- text-generation
|
||||
- llama
|
||||
---
|
||||
|
||||
# nuevamol-80m-base
|
||||
|
||||
Base NuevaMol 80M causal language model for molecular generation.
|
||||
|
||||
## Usage
|
||||
|
||||
```python
|
||||
from transformers import AutoModelForCausalLM, AutoTokenizer
|
||||
|
||||
model_id = "mnoukhov/nuevamol-80m-base"
|
||||
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
||||
model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype="auto")
|
||||
```
|
||||
|
||||
## Files
|
||||
|
||||
This repository contains the inference artifacts from `output/nuevamol-pretrain_80m-20260601-045239`.
|
||||
Reference in New Issue
Block a user