AkashGhosh
Results
1
issues of
AkashGhosh
code: import torch import transformers from transformers import AutoTokenizer, AutoModelForCausalLM, TrainingArguments import pyreft from huggingface_hub import login login(token="***") model_name_or_path = "meta-llama/Meta-Llama-3-8B" device = torch.device('cuda' if torch.cuda.is_available() else 'cpu') model =...
question