Skip to content

Commit

Permalink
update datasets
Browse files Browse the repository at this point in the history
  • Loading branch information
merrymercy committed Jul 21, 2023
1 parent dd630ae commit 4d4da26
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 8 deletions.
4 changes: 2 additions & 2 deletions content/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ title: "About"

Large Model Systems Organization (LMSYS Org) is an open research organization founded by students and faculty from UC Berkeley in collaboration with UCSD and CMU.

We aim to make large models accessible to everyone by co-development of open datasets, models, systems, and evaluation tools. Our work encompasses research in both machine learning and systems. We train large language models and make them widely available, while also developing distributed systems to accelerate their training and inference.
We aim to make large models accessible to everyone by co-development of open models, datasets, systems, and evaluation tools. Our work encompasses research in both machine learning and systems. We train large language models and make them widely available, while also developing distributed systems to accelerate their training and inference.

### Members
**Student Team**
[Lianmin Zheng](https://lmzheng.net/), [Ying Sheng](https://sites.google.com/view/yingsheng/home), [Wei-Lin Chiang](https://infwinston.github.io/), [Dacheng Li](https://dachengli1.github.io/), [Zhuohan Li](https://people.eecs.berkeley.edu/~zhuohan/), [Zi Lin](https://zi-lin.com/), [Zhanghao Wu](https://zhanghaowu.me/), [Shuo Yang](https://github.com/andy-yang-1), [Siyuan Zhuang](https://github.com/suquark), [Yonghao Zhuang](https://github.com/ZYHowell)

**Faculty Team**
[Hao Zhang](https://people.eecs.berkeley.edu/~hao/), [Ion Stoica](https://people.eecs.berkeley.edu/~istoica/), [Joseph E. Gonzalez](https://people.eecs.berkeley.edu/~jegonzal/), [Eric P. Xing](http://www.cs.cmu.edu/~epxing/).
[Hao Zhang](https://people.eecs.berkeley.edu/~hao/), [Ion Stoica](https://people.eecs.berkeley.edu/~istoica/), [Joseph E. Gonzalez](https://people.eecs.berkeley.edu/~jegonzal/), [Eric P. Xing](http://www.cs.cmu.edu/~epxing/)

**Institutions**
UC Berkeley, UCSD, CMU, MBZUAI
Expand Down
16 changes: 14 additions & 2 deletions content/projects.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,19 @@
"architecture": "Base: Flan-T5",
"size": "Size: 3B",
"desc": "A commercial-friendly, compact, yet powerful chat assistant fine-tuned from Flan-T5.",
"link": "https://github.com/lm-sys/FastChat#fastchat-t5"
"link": "https://huggingface.co/lmsys/fastchat-t5-3b-v1.0"
}
]
},
{
"name": "Datasets",
"entries": [
{
"name": "Chatbot Arena Conversations",
"architecture": "",
"size": "",
"desc": "This dataset contains 33K cleaned conversations with pairwise human preferences collected on Chatbot Arena.",
"link": "https://huggingface.co/datasets/lmsys/chatbot_arena_conversations"
}
]
},
Expand All @@ -33,7 +45,7 @@
"architecture": "",
"size": "",
"desc": "A benchmark platform for large language models (LLMs) that features anonymous, randomized battles in a crowdsourced manner. It comes with a leaderboard based on Elo ratings.",
"link": "https://arena.lmsys.org/"
"link": "https://chat.lmsys.org/?arena"
},
{
"name": "MT-Bench",
Expand Down
2 changes: 1 addition & 1 deletion scripts/gen-rss.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const parseBlogPostHeader = (content) => {
const genRssFeed = async () => {
const rss = new RSS({
title: "Large Model Systems Organization",
description: `Large Model Systems Organization (LMSYS Org) is an open research organization founded by students and faculty from UC Berkeley in collaboration with UCSD and CMU. We aim to make large models accessible to everyone by co-development of open datasets, models, systems, and evaluation tools. Our work encompasses research in both machine learning and systems. We train large language models and make them widely available, while also developing distributed systems to accelerate their training and inference`,
description: `Large Model Systems Organization (LMSYS Org) is an open research organization founded by students and faculty from UC Berkeley in collaboration with UCSD and CMU. We aim to make large models accessible to everyone by co-development of open models, datasets, systems, and evaluation tools. Our work encompasses research in both machine learning and systems. We train large language models and make them widely available, while also developing distributed systems to accelerate their training and inference`,
site_url: rootUrl,
image_url: `${rootUrl}/public/images/gallery/universe.png`,
});
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default function Home() {
<p className="text-2xl pb-1">Vicuna</p>
<hr />
<p className="pt-2">
A chatbot impressing GPT-4 with 90%* ChatGPT quality, available in 7B and 13B sizes.
A chatbot impressing GPT-4 with 90%* ChatGPT quality, available in 7B/13B/33B sizes.
</p>
</div>
</Link>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/projects.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ export default function Home() {
<div className="w-full flex justify-center py-5 pt-16 md:pt-5">
<Tags
title="Projects"
desc="LMSYS Org develops open datasets, models, systems, and evaluation tools for large models."
desc="LMSYS Org develops open models, datasets, systems, and evaluation tools for large models."
/>
<div className="container px-5">
<h1 className="text-7xl md:text-8xl font-bold">PROJECTS</h1>
<div className="text-2xl pb-4">
LMSYS Org develops open datasets, models, systems, and evaluation tools for large models.
LMSYS Org develops open models, datasets, systems, and evaluation tools for large models.
</div>
<hr className="mb-5 mt-2 md:hidden" />
{projects.map((item, i) => {
Expand Down

0 comments on commit 4d4da26

Please sign in to comment.