Text Generation
PEFT
Safetensors
dfurman commited on
Commit
2341ebe
1 Parent(s): d0fa7b9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -4
README.md CHANGED
@@ -46,7 +46,14 @@ To prompt the chat model, use the following format:
46
 
47
  **Falcon-7b-chat-oasst1**:
48
  ```
49
- [coming]
 
 
 
 
 
 
 
50
  ```
51
 
52
  ### Example Dialogue 2
@@ -59,7 +66,17 @@ To prompt the chat model, use the following format:
59
 
60
  **Falcon-7b-chat-oasst1**:
61
  ```
62
- [coming]
 
 
 
 
 
 
 
 
 
 
63
  ```
64
 
65
  ### Direct Use
@@ -138,8 +155,9 @@ with torch.cuda.amp.autocast():
138
  eos_token_id=tokenizer.eos_token_id,
139
  )
140
 
141
- # Inspect outputs
142
- print('\n\n', tokenizer.decode(output_tokens[0], skip_special_tokens=True))
 
143
  ```
144
 
145
  ## Reproducibility
 
46
 
47
  **Falcon-7b-chat-oasst1**:
48
  ```
49
+ Dear friends,
50
+
51
+ I am so excited to host a dinner party at my home this Friday! I will be making a delicious meal, but I would love for you to bring your favorite bottle of wine to share with everyone.
52
+
53
+ Please let me know if you can make it and if you have any dietary restrictions I should be aware of. I look forward to seeing you soon!
54
+
55
+ Best,
56
+ Daniel
57
  ```
58
 
59
  ### Example Dialogue 2
 
66
 
67
  **Falcon-7b-chat-oasst1**:
68
  ```
69
+ Here are four things to do in San Francisco:
70
+
71
+ 1. Visit the Golden Gate Bridge: The Golden Gate Bridge is one of the most iconic landmarks in the world and is a must-see for any visitor to San Francisco. The bridge offers stunning views of the city and the Pacific Ocean, and there are plenty of opportunities for photos and sightseeing along the way.
72
+
73
+ 2. Explore Chinatown: San Francisco's Chinatown is one of the oldest and most vibrant Chinatowns in the world, and it's a great place to explore the city's Chinese culture and history. You can wander the streets, sample the local cuisine, and visit the many shops and markets.
74
+
75
+ 3. Visit Alcatraz Island: Alcatraz Island is a former prison and military fort located in the middle of San Francisco Bay. The island is now a popular tourist attraction and offers guided tours that take visitors through the prison cells and other historic buildings.
76
+
77
+ 4. Take a cable car ride: San Francisco's cable cars are a classic tourist attraction and offer a unique way to explore the city. The cars run along several routes and offer stunning views of the city and the surrounding area.
78
+
79
+ These are just a few of the many things to do in San Francisco. There are plenty of other activities, sights, and attractions to explore, so be sure to do your research and plan your trip accordingly.
80
  ```
81
 
82
  ### Direct Use
 
155
  eos_token_id=tokenizer.eos_token_id,
156
  )
157
 
158
+ generated_text = tokenizer.decode(output_tokens[0], skip_special_tokens=True)
159
+ # Inspect message response in the outputs
160
+ print(generated_text.split("<human>: ")[1].split("<bot>: ")[-1])
161
  ```
162
 
163
  ## Reproducibility