Model reference · open weights
GLACIER-100k-MiniMol is an open-weight embedding model from glacier-hf. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Released by | glacier-hf |
|---|---|
| Type | Embedding models |
| Task | Embeddings |
| Released | 2026-06-09 |
| Popularity | 1k downloads / month |
| Licence | Open weights |
About
GLACIER is a multimodal student-teacher foundation model designed for molecular property prediction. It integrates molecular graphs, SMILES strings, and physicochemical descriptors to learn rich molecular embeddings.
Since this model uses a custom architecture, you need to download the repository files to load the model.
import torch
from huggingface_hub import snapshot_download
import sys
# Download the repository to access custom model code
repo_dir = snapshot_download(repo_id="glacier-hf/GLACIER-100k-MiniMol")
sys.path.append(repo_dir)
from data.dataloader import SmilesMoleculeDataset, build_dataloader
from glacier_student import Glacier
# Load the pretrained GLACIER model
model = Glacier.from_pretrained("glacier-hf/GLACIER-100k-MiniMol")
# Prepare input data
dataset = SmilesMoleculeDataset(smiles=["Cn1c(=O)c2c(ncn2C)n(C)c1=O"])
dataloader = build_dataloader(dataset, batch_size=1)
model.eval()
batch = next(iter(dataloader))
with torch.no_grad():
embedding = model(batch)
print(embedding)
dataloader: customized dataloader for multimodal learningencoders: graph, text, and tabular encodersfusion: Finsler geometry-aware fusion methodglacier_student: GLACIER model backbone and contrastive lossutils: miscellaneous helper functions@inproceedings{nguyen2026glacier,
title={GLACIER: A Multimodal Student-Teacher Foundation Model for Molecular Property Prediction},
author={Emily Nguyen and Yongchan Hong and Harsh Toshniwal and Yan Liu and Andreas Luttens},
booktitle={Proceedings of the 32nd ACM SIGKDD Conference on Knowledge Discovery and Data Mining V.2 (KDD ’26)},
year={2026},
publisher={ACM},
doi={10.1145/3770855.3819032}
}
From the published model card. Full card on the HuggingFace links in the sidebar.
How it works
Using it via the API
Once AxForge deploys glacier-100k-minimol for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (glacier-100k-minimol below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/embeddings \
-H "Authorization: Bearer $AXFORGE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"glacier-100k-minimol","input":"text to embed"}'
Create an account — your API key is available in the console. 3M free tokens every 30 days with every new account.