adt commited on
Commit
b8b0054
·
1 Parent(s): 99cb6b9

Update app.py

Browse files

adt: ensure link to CSV is accurate, rename 'playground' column, update description to models-table

Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -9,7 +9,7 @@ import pandas as pd
9
 
10
 
11
  # %% app.ipynb 1
12
- columns_to_click = ["Paper / Repo", "Selected \nplaygrounds"]
13
 
14
  def get_data():
15
  df = pd.read_csv(
@@ -45,7 +45,7 @@ def get_data():
45
 
46
  # %% app.ipynb 2
47
  title = """<h1 align="center">The Large Language Models Landscape</h1>"""
48
- 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 [lifearchitect.ai/models](https://lifearchitect.ai/models/).
49
  """
50
 
51
 
 
9
 
10
 
11
  # %% app.ipynb 1
12
+ columns_to_click = ["Paper / Repo", "Playground"]
13
 
14
  def get_data():
15
  df = pd.read_csv(
 
45
 
46
  # %% app.ipynb 2
47
  title = """<h1 align="center">The Large Language Models Landscape</h1>"""
48
+ 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 [lifearchitect.ai/models-table](https://lifearchitect.ai/models-table/).
49
  """
50
 
51