Foam GPT 9 models: Base Qwen3-Coder-30B-A3B-Instruct
Collection
9 items • Updated
# Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("finalform/allrun_script_Qwen3-Coder-30B-A3B-Instruct", dtype="auto")This model is a fine-tuned version of Qwen/Qwen3-Coder-30B-A3B-Instruct on the train dataset. It achieves the following results on the evaluation set:
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Accuracy |
|---|---|---|---|---|
| 0.0225 | 2.0 | 10 | 0.0166 | 0.9927 |
Base model
Qwen/Qwen3-Coder-30B-A3B-Instruct
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="finalform/allrun_script_Qwen3-Coder-30B-A3B-Instruct") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)