Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

unsloth/Llama-3.1-Nemotron-70B-Instruct-bnb-4bit #198

Open
werruww opened this issue Nov 3, 2024 · 0 comments
Open

unsloth/Llama-3.1-Nemotron-70B-Instruct-bnb-4bit #198

werruww opened this issue Nov 3, 2024 · 0 comments

Comments

@werruww
Copy link

werruww commented Nov 3, 2024

colab tpu

from airllm import AutoModel
import torch

MAX_LENGTH = 15

could use hugging face model repo id:

model = AutoModel.from_pretrained("unsloth/Llama-3.1-Nemotron-70B-Instruct-bnb-4bit", delete_original=True)

input_text = [
'What is the capital of United States?',
]

input_tokens = model.tokenizer(input_text,
return_tensors="pt",
return_attention_mask=False,
truncation=True,
max_length=MAX_LENGTH,
padding=False)

generation_output = model.generate(
input_tokens['input_ids'].cuda(),
max_new_tokens=2,
use_cache=True,
return_dict_in_generate=True)

output = model.tokenizer.decode(generation_output.sequences[0])

print(output)

AssertionError: Torch not compiled with CUDA enabled

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant