CoolFace
Modelpublic

LLMOX/FiscalOxLLM-stage01

sourceHugging Facellama3.1updated 7mo agoView on Hugging Face
0likes8downloads
Model Card

FiscalOxLLM — Stage 0 + 1

Llama-3.1-8B-Instruct fine-tuned sequentially on Stage 0 (SMILES) + Stage 1 (ADMET) datasets using QLoRA.

Details

PropertyValue
Base Modelmeta-llama/Meta-Llama-3.1-8B-Instruct
Fine-Tuning StageStage 0 → 1
MethodQLoRA (r=16, alpha=32)
Precisionbfloat16

Usage

python
from transformers import AutoModelForCausalLM, AutoTokenizer

model = AutoModelForCausalLM.from_pretrained("LLMOX/FiscalOxLLM-stage01")
tokenizer = AutoTokenizer.from_pretrained("LLMOX/FiscalOxLLM-stage01")

inputs = tokenizer("Your prompt here", return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=256)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))

Part of Fiscal Ox LLM Research

This model is part of a multi-stage fine-tuning comparison study.