lewtun HF staff commited on
Commit
88b8568
1 Parent(s): 5389cf3
Files changed (2) hide show
  1. app.ipynb +1 -0
  2. app.py +6 -1
app.ipynb CHANGED
@@ -374,6 +374,7 @@
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
  "\"\"\""
 
374
  "metadata": {},
375
  "outputs": [],
376
  "source": [
377
+ "# |export\n",
378
  "title = \"\"\"<h1 align=\"center\">The Large Language Models Landscape</h1>\"\"\"\n",
379
  "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",
380
  "\"\"\""
app.py CHANGED
@@ -1,7 +1,7 @@
1
  # AUTOGENERATED! DO NOT EDIT! File to edit: app.ipynb.
2
 
3
  # %% auto 0
4
- __all__ = ['df', 'value_func']
5
 
6
  # %% app.ipynb 0
7
  import gradio as gr
@@ -18,6 +18,11 @@ df = df.copy()[~df["Model"].isna()]
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
 
1
  # AUTOGENERATED! DO NOT EDIT! File to edit: app.ipynb.
2
 
3
  # %% auto 0
4
+ __all__ = ['df', 'title', 'description', 'value_func']
5
 
6
  # %% app.ipynb 0
7
  import gradio as gr
 
18
  # Drop TBA models
19
  df = df.copy()[df["Parameters \n(B)"] != "TBA"]
20
 
21
+ # %% app.ipynb 6
22
+ title = """<h1 align="center">The Large Language Models Landscape</h1>"""
23
+ 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).
24
+ """
25
+
26
  # %% app.ipynb 7
27
  def value_func():
28
  return df