m-ric HF staff commited on
Commit
e93a4e5
Β·
1 Parent(s): 5574047

Style changes

Browse files
Files changed (2) hide show
  1. README.md +3 -3
  2. app.py +27 -11
README.md CHANGED
@@ -1,8 +1,8 @@
1
  ---
2
  title: Rag Highlights
3
- emoji: 🏒
4
- colorFrom: blue
5
- colorTo: gray
6
  sdk: gradio
7
  sdk_version: 4.44.0
8
  app_file: app.py
 
1
  ---
2
  title: Rag Highlights
3
+ emoji: πŸ“„πŸ’‘
4
+ colorFrom: yellow
5
+ colorTo: blue
6
  sdk: gradio
7
  sdk_version: 4.44.0
8
  app_file: app.py
app.py CHANGED
@@ -187,30 +187,43 @@ def on_generate(prompt, num_tokens):
187
  return html_output
188
 
189
  css = """
190
- #output-container { font-size: 18px; line-height: 1.5; }
191
- .hoverable { color: blue; cursor: pointer; position: relative; }
 
 
 
 
 
 
 
 
192
  .hover-note {
193
  display: none;
194
  position: absolute;
195
  padding: 5px;
196
  border-radius: 5px;
197
  bottom: 100%;
198
- left: 50%;
199
  white-space: normal;
200
  background-color: rgba(240, 240, 240, 1);
201
  max-width: 600px;
202
- width:500px;
203
  word-wrap: break-word;
204
  z-index: 100;
205
  }
206
- .hoverable:hover .hover-note { display: block; }
 
 
207
  """
208
  examples = [
209
  """Context:
210
  The first recorded efforts to reach Everest's summit were made by British mountaineers. As Nepal did not allow foreigners to enter the country at the time, the British made several attempts on the north ridge route from the Tibetan side. After the first reconnaissance expedition by the British in 1921 reached 7,000 m (22,970 ft) on the North Col, the 1922 expedition pushed the north ridge route up to 8,320 m (27,300 ft), marking the first time a human had climbed above 8,000 m (26,247 ft). The 1924 expedition resulted in one of the greatest mysteries on Everest to this day: George Mallory and Andrew Irvine made a final summit attempt on 8 June but never returned, sparking debate as to whether they were the first to reach the top. Tenzing Norgay and Edmund Hillary made the first documented ascent of Everest in 1953, using the southeast ridge route. Norgay had reached 8,595 m (28,199 ft) the previous year as a member of the 1952 Swiss expedition. The Chinese mountaineering team of Wang Fuzhou, Gonpo, and Qu Yinhua made the first reported ascent of the peak from the north ridge on 25 May 1960.
211
 
212
- Question: How high did they climb in 1922? Answer:""",
213
- """Hurricane Katrina killed hundreds of people as it made landfall on New Orleans in 2005 - many of these deaths could have been avoided if alerts had been given one day earlier. Accurate weather forecasts are really life-saving.
 
 
 
214
 
215
  πŸ”₯ Now, NASA and IBM just dropped a game-changing new model: the first ever foundation model for weather! This means, it's the first time we have a generalist model not restricted to one task, but able to predict 160 weather variables!
216
 
@@ -218,8 +231,11 @@ Prithvi WxC (Prithvi, "ΰ€ͺΰ₯ƒΰ€₯ΰ₯ΰ€΅ΰ₯€", is the Sanskrit name for Earth) - is
218
 
219
  πŸ’‘ But it comes with some important tweaks: under the hood, Prithvi WxC uses a clever transformer-based architecture with 25 encoder and 5 decoder blocks. It alternates between "local" and "global" attention to capture both regional and global weather patterns.
220
 
221
- How many weather variables can Prithvi predict? Answer:""",
222
- """Transformers v4.45.0 released: includes a lightning-fast method to build tools! ⚑️
 
 
 
223
 
224
  During user research with colleagues @MoritzLaurer and @Jofthomas , we discovered that the class definition currently in used to define a Tool in transformers.agents is a bit tedious to use, because it goes in great detail.
225
 
@@ -227,13 +243,13 @@ During user research with colleagues @MoritzLaurer and @Jofthomas , we discovere
227
 
228
  βœ… VoilΓ , you're good to go!
229
 
230
- How can you build tools simply in transformers?
231
 
232
  Answer:""",
233
  ]
234
 
235
  with gr.Blocks(css=css, theme=gr.themes.Soft()) as demo:
236
- gr.Markdown("# Syntax highlighted text generation - for RAG applications")
237
 
238
  input_text = gr.Textbox(label="Enter your prompt:", lines=10, value=examples[0])
239
  num_tokens = gr.Slider(minimum=1, maximum=100, value=20, step=1, label="Number of tokens to generate (while no EOS token)")
 
187
  return html_output
188
 
189
  css = """
190
+ #output-container {
191
+ font-size: 18px;
192
+ line-height: 1.5;
193
+ position: relative;
194
+ }
195
+ .hoverable {
196
+ color: blue;
197
+ position: relative;
198
+ display: inline-block;
199
+ }
200
  .hover-note {
201
  display: none;
202
  position: absolute;
203
  padding: 5px;
204
  border-radius: 5px;
205
  bottom: 100%;
206
+ left: 0;
207
  white-space: normal;
208
  background-color: rgba(240, 240, 240, 1);
209
  max-width: 600px;
210
+ width: 500px;
211
  word-wrap: break-word;
212
  z-index: 100;
213
  }
214
+ .hoverable:hover .hover-note {
215
+ display: block;
216
+ }
217
  """
218
  examples = [
219
  """Context:
220
  The first recorded efforts to reach Everest's summit were made by British mountaineers. As Nepal did not allow foreigners to enter the country at the time, the British made several attempts on the north ridge route from the Tibetan side. After the first reconnaissance expedition by the British in 1921 reached 7,000 m (22,970 ft) on the North Col, the 1922 expedition pushed the north ridge route up to 8,320 m (27,300 ft), marking the first time a human had climbed above 8,000 m (26,247 ft). The 1924 expedition resulted in one of the greatest mysteries on Everest to this day: George Mallory and Andrew Irvine made a final summit attempt on 8 June but never returned, sparking debate as to whether they were the first to reach the top. Tenzing Norgay and Edmund Hillary made the first documented ascent of Everest in 1953, using the southeast ridge route. Norgay had reached 8,595 m (28,199 ft) the previous year as a member of the 1952 Swiss expedition. The Chinese mountaineering team of Wang Fuzhou, Gonpo, and Qu Yinhua made the first reported ascent of the peak from the north ridge on 25 May 1960.
221
 
222
+ Question: How high did they climb in 1922?
223
+
224
+ Answer:""",
225
+ """Context:
226
+ Hurricane Katrina killed hundreds of people as it made landfall on New Orleans in 2005 - many of these deaths could have been avoided if alerts had been given one day earlier. Accurate weather forecasts are really life-saving.
227
 
228
  πŸ”₯ Now, NASA and IBM just dropped a game-changing new model: the first ever foundation model for weather! This means, it's the first time we have a generalist model not restricted to one task, but able to predict 160 weather variables!
229
 
 
231
 
232
  πŸ’‘ But it comes with some important tweaks: under the hood, Prithvi WxC uses a clever transformer-based architecture with 25 encoder and 5 decoder blocks. It alternates between "local" and "global" attention to capture both regional and global weather patterns.
233
 
234
+ Question: How many weather variables can Prithvi predict?
235
+
236
+ Answer:""",
237
+ """Context:
238
+ Transformers v4.45.0 released: includes a lightning-fast method to build tools! ⚑️
239
 
240
  During user research with colleagues @MoritzLaurer and @Jofthomas , we discovered that the class definition currently in used to define a Tool in transformers.agents is a bit tedious to use, because it goes in great detail.
241
 
 
243
 
244
  βœ… VoilΓ , you're good to go!
245
 
246
+ Question: How can you build tools simply in transformers?
247
 
248
  Answer:""",
249
  ]
250
 
251
  with gr.Blocks(css=css, theme=gr.themes.Soft()) as demo:
252
+ gr.Markdown("# RAG with source linking using Source attribution with [LXT](https://lxt.readthedocs.io/en/latest/quickstart.html#tinyllama)")
253
 
254
  input_text = gr.Textbox(label="Enter your prompt:", lines=10, value=examples[0])
255
  num_tokens = gr.Slider(minimum=1, maximum=100, value=20, step=1, label="Number of tokens to generate (while no EOS token)")