AstroBridge Captioner

n-modality (image + spectra) astronomy captioner. LoRA adapter + fusion stack trained on top of a frozen Qwen/Qwen3.5-9B. The base model itself is NOT included here โ€” load it fresh from Qwen/Qwen3.5-9B and apply this adapter on top.

How to load

from transformers import AutoModelForCausalLM, AutoTokenizer
from peft import PeftModel
import torch

base = AutoModelForCausalLM.from_pretrained(
    "Qwen/Qwen3.5-9B", dtype=torch.bfloat16, trust_remote_code=True
)
llm = PeftModel.from_pretrained(base, "UniverseTBD/astrobridge-model-v5")
tokenizer = AutoTokenizer.from_pretrained("UniverseTBD/astrobridge-model-v5")

# middle.pt (fusion stack: projectors/modality_identity/qformer/adapter) needs the captioner
# package's FusionStack class to reload โ€” see captioner/model/captioner.py and
# captioner/train/stage1.py's run_stage1 for how it's constructed and wired to the LLM.

Training info

  • config_hash: c3982fe3dd2423a5
  • quantization: None
  • git_sha: 305aef80a955f1b1e8c188302f47ab8b393f84b0
  • tier_histogram: {"single": 4120, "joint": 1318}

Eval (groundedness gate)

{
  "per_modality": {
    "image": {
      "shuffle_test": {
        "modality": "image",
        "n": 80,
        "mean_edit_distance": 347.675,
        "null_result": false
      },
      "ablation_test": {
        "modality": "image",
        "n": 128,
        "fraction_caption_changed": 1.0,
        "null_result": false
      }
    },
    "spectra": {
      "shuffle_test": {
        "modality": "spectra",
        "n": 16,
        "mean_edit_distance": 235.375,
        "null_result": false
      },
      "ablation_test": {
        "modality": "spectra",
        "n": 48,
        "fraction_caption_changed": 1.0,
        "null_result": false
      }
    },
    "lightcurve": {
      "shuffle_test": {
        "modality": "lightcurve",
        "n": 4,
        "mean_edit_distance": 298.5,
        "null_result": false
      },
      "ablation_test": {
        "modality": "lightcurve",
        "n": 24,
        "fraction_caption_changed": 1.0,
        "null_result": false
      }
    }
  }
}
Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for UniverseTBD/astrobridge-model-v5

Finetuned
Qwen/Qwen3.5-9B
Adapter
(667)
this model