MaziyarPanahi commited on
Commit
fa1d71c
1 Parent(s): 6c8c9f5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -0
README.md CHANGED
@@ -49,4 +49,21 @@ inputs = tokenizer(text, return_tensors="pt").to(0)
49
 
50
  out = model.generate(**inputs, max_new_tokens=300)
51
  print(tokenizer.decode(out[0], skip_special_tokens=True))
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
  ```
 
49
 
50
  out = model.generate(**inputs, max_new_tokens=300)
51
  print(tokenizer.decode(out[0], skip_special_tokens=True))
52
+ ```
53
+
54
+ Results:
55
+ ```
56
+ User:
57
+ Hello can you provide me with top-3 cool places to visit in Paris?
58
+
59
+ Assistant:
60
+ Absolutely, here are my top-3 recommendations for must-see places in Paris:
61
+
62
+ 1. The Eiffel Tower: An icon of Paris, this wrought-iron lattice tower is a global cultural icon of France and is among the most recognizable structures in the world. Climbing up to the top offers breathtaking views of the city.
63
+
64
+ 2. The Louvre Museum: Home to thousands of works of art, the Louvre is the world's largest art museum and a historic monument in Paris. Must-see pieces include the Mona Lisa, the Winged Victory of Samothrace, and the Venus de Milo.
65
+
66
+ 3. Notre-Dame Cathedral: This cathedral is a masterpiece of French Gothic architecture and is famous for its intricate stone carvings, beautiful stained glass, and its iconic twin towers. Be sure to spend some time exploring its history and learning about the fascinating restoration efforts post the 2019 fire.
67
+
68
+ I hope you find these recommendations helpful and that they make for an enjoyable and memorable trip to Paris. Safe travels!
69
  ```