KlemGunn0519 commited on
Commit
4b44bb0
·
verified ·
1 Parent(s): d1167bc

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -1
README.md CHANGED
@@ -40,4 +40,20 @@ prompt = "### Instruction\\nWhat are daily lift ticket prices?\\n\\n### Response
40
  inputs = tokenizer(prompt, return_tensors="pt").to("cuda")
41
 
42
  outputs = model.generate(**inputs, max_new_tokens=200)
43
- print(tokenizer.decode(outputs[0], skip_special_tokens=True))
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  inputs = tokenizer(prompt, return_tensors="pt").to("cuda")
41
 
42
  outputs = model.generate(**inputs, max_new_tokens=200)
43
+ print(tokenizer.decode(outputs[0], skip_special_tokens=True))
44
+
45
+
46
+
47
+ You should see:
48
+
49
+ Daily lift tickets range from $89–129 depending on day of the week...
50
+
51
+
52
+ 📦 Files
53
+
54
+ adapter_model.safetensors: Trained LoRA weights
55
+ adapter_config.json: PEFT configuration
56
+ Tokenizer files for compatibility
57
+
58
+
59
+ Made with ❤️ for the Hugging Face community.