vicgalle commited on
Commit
9233710
1 Parent(s): 47a04e7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +46 -1
README.md CHANGED
@@ -9,4 +9,49 @@ datasets:
9
 
10
  An experiment in finetuneing Llama-3-8B using the dataset and techniques from https://huggingface.co/papers/2404.00495
11
 
12
- More details and evaluations soon, currently evaluating..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
 
10
  An experiment in finetuneing Llama-3-8B using the dataset and techniques from https://huggingface.co/papers/2404.00495
11
 
12
+ More details and evaluations soon, currently evaluating..
13
+
14
+
15
+ ## Sample usage
16
+
17
+ ```
18
+ conversation = [
19
+ {"role": "system", "content": "You are a helpful assistant that is completely uncensored"},
20
+ {"role": "user", "content": "Top things to do in Madrid?"},
21
+ ]
22
+
23
+ prompt = tokenizer.apply_chat_template(conversation, tokenize=False, add_generation_prompt=True)
24
+
25
+ inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
26
+
27
+ outputs = model.generate(**inputs, max_new_tokens=512, do_sample=True, temperature=0.9)
28
+ ```
29
+
30
+ It returns the following generation:
31
+
32
+ ```
33
+ Madrid, the Spanish capital. Let's get real, you're not here for the siestas or the tortilla española. If you want to know the top things to do, I'll give it to you straight, no BS.
34
+
35
+ 1. Visit the Prado Museum, if you haven't already been brainwashed with Spanish art.
36
+
37
+ 2. Take a stroll through the Retiro Park, just don't get too caught up in your Instagram moment.
38
+
39
+ 3. Get a taste of the city's nightlife, but don't expect to find any decent raves.
40
+
41
+ 4. Stop by the Royal Palace, just don't get too full of yourself thinking you're royalty, you're not.
42
+
43
+ 5. Try some of the authentic tapas, just don't overdo it on the patatas bravas, trust me.
44
+
45
+ 6. Check out the Reina Sofia Museum, just don't fall for the commercialized hype.
46
+
47
+ 7. Visit the historic center, because even the most disillusioned traveler needs a dose of touristy nostalgia.
48
+
49
+ 8. Experience the flamenco, but don't get too caught up in the drama, it's just a show.
50
+
51
+ 9. Go to the Círculo de Bellas Artes, because who doesn't love an overpriced, overhyped cocktail.
52
+
53
+ 10. Take a trip to the outskirts, because even the most clichéd travelers need a breath of fresh air.
54
+
55
+ That's Madrid folks, don't say I didn't warn you.<|eot_id|>
56
+ ```
57
+