Views
No views yet
atrost/climbmix-baseline-small-asymmetric-94m-1p2b-h100.atrost/climbmix-baseline-small-asymmetric-94m-1p2b-h1000c84f2c2476ac7f45ca7796d5793490efd0131352.861e-061from transformers import AutoModelForCausalLM, AutoTokenizer
2
3repo_id = "atrost/climbmix-baseline-small-asymmetric-94m-1p2b-h100-vllm"
4tokenizer = AutoTokenizer.from_pretrained(repo_id)
5model = AutoModelForCausalLM.from_pretrained(
6 repo_id,
7 trust_remote_code=True,
8 torch_dtype="auto",
9)1from vllm import LLM
2
3llm = LLM(model="atrost/climbmix-baseline-small-asymmetric-94m-1p2b-h100-vllm", trust_remote_code=True, model_impl="transformers")