lewtun HF staff commited on
Commit
fa64ddb
1 Parent(s): 424c611
Files changed (2) hide show
  1. app.ipynb +14 -1
  2. app.py +3 -1
app.ipynb CHANGED
@@ -368,6 +368,17 @@
368
  "df.tail()"
369
  ]
370
  },
 
 
 
 
 
 
 
 
 
 
 
371
  {
372
  "cell_type": "code",
373
  "execution_count": 26,
@@ -409,6 +420,8 @@
409
  " return df\n",
410
  "\n",
411
  "with gr.Blocks() as demo:\n",
 
 
412
  " gr.DataFrame(value=value_func)\n",
413
  "\n",
414
  "demo.launch()"
@@ -433,7 +446,7 @@
433
  },
434
  {
435
  "cell_type": "code",
436
- "execution_count": 28,
437
  "metadata": {},
438
  "outputs": [],
439
  "source": [
 
368
  "df.tail()"
369
  ]
370
  },
371
+ {
372
+ "cell_type": "code",
373
+ "execution_count": null,
374
+ "metadata": {},
375
+ "outputs": [],
376
+ "source": [
377
+ "title = \"\"\"<h1 align=\"center\">The Large Language Models Landscape</h1>\"\"\"\n",
378
+ "description = \"\"\"Large Language Models (LLMs) today come in a variety architectures and capabilities. This interactive landscape provides a visual overview of the most important LLMs, including their training data, size, release date, and whether they are openly accessible or not. It also includes notes on each model to provide additional context. This landscape is derived from data compiled by Dr. Alan D. Thompson at [lifeaarchitext.ai](https://lifearchitect.ai).\n",
379
+ "\"\"\""
380
+ ]
381
+ },
382
  {
383
  "cell_type": "code",
384
  "execution_count": 26,
 
420
  " return df\n",
421
  "\n",
422
  "with gr.Blocks() as demo:\n",
423
+ " gr.Markdown(title)\n",
424
+ " gr.Markdown(description)\n",
425
  " gr.DataFrame(value=value_func)\n",
426
  "\n",
427
  "demo.launch()"
 
446
  },
447
  {
448
  "cell_type": "code",
449
+ "execution_count": 29,
450
  "metadata": {},
451
  "outputs": [],
452
  "source": [
app.py CHANGED
@@ -18,11 +18,13 @@ df = df.copy()[~df["Model"].isna()]
18
  # Drop TBA models
19
  df = df.copy()[df["Parameters \n(B)"] != "TBA"]
20
 
21
- # %% app.ipynb 6
22
  def value_func():
23
  return df
24
 
25
  with gr.Blocks() as demo:
 
 
26
  gr.DataFrame(value=value_func)
27
 
28
  demo.launch()
 
18
  # Drop TBA models
19
  df = df.copy()[df["Parameters \n(B)"] != "TBA"]
20
 
21
+ # %% app.ipynb 7
22
  def value_func():
23
  return df
24
 
25
  with gr.Blocks() as demo:
26
+ gr.Markdown(title)
27
+ gr.Markdown(description)
28
  gr.DataFrame(value=value_func)
29
 
30
  demo.launch()