HackerTrans
トップ新着トレンドコメント過去質問紹介求人

MMMercy2

no profile record

投稿

Fastest JSON Decoding for Local LLMs with Compressed Finite State Machine

lmsys.org
2 ポイント·投稿者 MMMercy2·2 年前·0 コメント

Fast and Expressive LLM Inference with RadixAttention and SGLang

lmsys.org
11 ポイント·投稿者 MMMercy2·2 年前·0 コメント

Databricks picks up MosaicML, an OpenAI competitor, for $1.3B

techcrunch.com
3 ポイント·投稿者 MMMercy2·3 年前·0 コメント

Chatbot Arena Leaderboard: Introducing MT-Bench and Vicuna-33B

lmsys.org
8 ポイント·投稿者 MMMercy2·3 年前·0 コメント

Building a Truly "Open" OpenAI API Server with Open Models Locally

lmsys.org
2 ポイント·投稿者 MMMercy2·3 年前·0 コメント

Chatbot Arena Leaderboard: OpenAI GPT-4 and Anthropic Claude Take the Lead

twitter.com
2 ポイント·投稿者 MMMercy2·3 年前·0 コメント

Chatbot Arena: Benchmarking LLMs in the Wild with Elo Ratings

lmsys.org
50 ポイント·投稿者 MMMercy2·3 年前·7 コメント

Chatbot Arena: side-by-side battles between open LLMs

chat.lmsys.org
8 ポイント·投稿者 MMMercy2·3 年前·0 コメント

[untitled]

1 ポイント·投稿者 MMMercy2·3 年前·0 コメント

コメント

MMMercy2
·3 年前·議論
You can try the smaller 7B version.
MMMercy2
·3 年前·議論
You can use this command to apply the delta weights. (https://github.com/lm-sys/FastChat#vicuna-13b) The delta weights are hosted on huggingface and will be automatically downloaded.
MMMercy2
·3 年前·議論
They are the parameters of this large language model. There are 13B fp16 numbers.
MMMercy2
·3 年前·議論
There are certainly some effective language model benchmarks; however, they are not well-suited for evaluating a chat assistant. Some projects employ human evaluation, while this blog post explores an alternative approach based on GPT-4. Both methods have their advantages and disadvantages, making this blog post an intriguing case study that can inspire the future development of more comprehensive evaluations.
MMMercy2
·3 年前·議論
I am a Vicuna developer. We plan to release the weights once we have addressed all concerns and have a low-resource version of the inference code ready. We released the demo first to get some early feedback on the model.
MMMercy2
·3 年前·議論
This project fine-tunes LLaMA on ShareGPT and gets competitive performance compared to Google's Bard.

https://vicuna.lmsys.org/
MMMercy2
·3 年前·議論
It can do some basic coding. The code syntax highlighting looks cool.

> Do a quick sort in python

> Here's an example of a quicksort implementation in Python:

def quicksort(array): if len(array) <= 1: return array pivot = array[0] less = [x for x in array[1:] if x <= pivot] greater = [x for x in array[1:] if x > pivot] return quicksort(less) + [pivot] + quicksort(greater)