ProGen2: Exploring the Boundaries of Protein Language Models
Paper • 2206.13517 • Published • 1
How to use N8Programs/ProGen2-base-bf16 with MLX:
# Make sure mlx-lm is installed
# pip install --upgrade mlx-lm
# if on a CUDA device, also pip install mlx[cuda]
# Generate text with mlx-lm
from mlx_lm import load, generate
model, tokenizer = load("N8Programs/ProGen2-base-bf16")
prompt = "Once upon a time in"
text = generate(model, tokenizer, prompt=prompt, verbose=True)How to use N8Programs/ProGen2-base-bf16 with MLX LM:
# Install MLX LM uv tool install mlx-lm # Generate some text mlx_lm.generate --model "N8Programs/ProGen2-base-bf16" --prompt "Once upon a time"
This repository contains a BF16 MLX-LM conversion of
hugohrban/progen2-base, a
mirror of the base ProGen2 model by Nijkamp et al.
The source checkpoint was downloaded from Hugging Face revision
71228cbfca5960f9fab5775f378bba3673af9f00 and converted from FP32 to BF16
safetensors. The converted tensor file contains 764,803,616 BF16 parameters.
This conversion was prepared for the standalone replication artifact for Many Next Token Predictors are In-context Learners.
model.safetensors: BF16 converted ProGen2-base weights.progen2_mlx.py: MLX-LM custom model implementation.config.json, tokenizer files, and ProGen custom-code files copied from the
source model with the MLX model-file entry added.from mlx_lm import load
model, tokenizer = load("N8Programs/ProGen2-base-bf16")
Please cite and follow the terms of the upstream ProGen2 work and the source model repository:
Quantized
Base model
hugohrban/progen2-base