Views
No views yet
google/gemma-4-E2B-itrna_projection.pt| File | Description |
|---|---|
model.safetensors | Merged LLM weights |
rna_projection.pt | Linear map RNA embed (2048) → text hidden |
rna_model_config.json | Architecture metadata |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2import torch
3
4model = AutoModelForCausalLM.from_pretrained("mims-harvard/bio-posttrain-gemma4-e2b-rna-sft", trust_remote_code=True)
5tokenizer = AutoTokenizer.from_pretrained("mims-harvard/bio-posttrain-gemma4-e2b-rna-sft")
6proj = torch.load("rna_projection.pt", map_location="cpu")rna_models code in the BioReason repository.