Views
No views yet
| File | Contents | Size |
|---|---|---|
config.json | Serialized ChaiConfig | 2 KB |
model.safetensors.index.json | Sharded weight map | 210 KB |
model-trunk.safetensors | Pairformer trunk | 680 MB |
model-diffusion_module.safetensors | Diffusion module | 512 MB |
model-confidence_head.safetensors | Confidence head | 59 MB |
model-token_embedder.safetensors | Token input embedder | 6.6 MB |
model-feature_embedding.safetensors | Feature embedding stack | 4.8 MB |
model-bond_loss_input_proj.safetensors | Bond feature projection | 2 KB |
1from chai_mlx import ChaiMLX
2
3model = ChaiMLX.from_pretrained("josephjojoe/chai-mlx")
4model_fp32 = ChaiMLX.from_pretrained(
5 "josephjojoe/chai-mlx",
6 compute_dtype="float32",
7)config.json sets:config_version = "1"compute_dtype = "reference"reference is the default runtime precision policy in chai-mlx.
Use compute_dtype="float32" to keep the MLX port in fp32 throughout.NOTICE in the
chai-mlx repo for attribution.