Model reference · open weights

GLACIER-100k-MiniMol

Available as managed deployment Embeddings glacier-hf Embeddings 1 variants 1k dl/mo

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 byglacier-hf
TypeEmbedding models
TaskEmbeddings
Released2026-06-09
Popularity1k downloads / month
LicenceOpen weights

About

What GLACIER-100k-MiniMol is

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.

Read the full model card

Sample Usage

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)

GLACIER Model Files

  • dataloader: customized dataloader for multimodal learning
  • encoders: graph, text, and tabular encoders
  • fusion: Finsler geometry-aware fusion method
  • glacier_student: GLACIER model backbone and contrastive loss
  • utils: miscellaneous helper functions

Citation

@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

How embedding models work

Your textsentence / documentEncodermaps meaningVectorlist of numbersAn embedding model turns text into a vector, so similar meanings sit close together — the basis of search and RAG.

Using it via the API

Call it like any OpenAI endpoint

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.

© 2026 AxForge · EU-hosted AI infrastructure Pricing Docs Trust Privacy Terms