Views
No views yet
meta-llama/Llama-3.1-8B-Instruct (full standalone model).
Part of the HARC release; see paper arXiv:2607.00572.1from transformers import AutoModelForCausalLM, AutoTokenizer
2model = AutoModelForCausalLM.from_pretrained("microsoft/HARC-Llama-3.1-8B-Instruct", torch_dtype="bfloat16", device_map="auto")
3tok = AutoTokenizer.from_pretrained("microsoft/HARC-Llama-3.1-8B-Instruct")