Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

update serverless components#1584

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
montanalow merged 2 commits intomasterfrommontana/dash
Jul 23, 2024
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 27 additions & 20 deletionspgml-dashboard/src/components/tables/serverless_models/mod.rs
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -8,7 +8,7 @@ use sailfish::TemplateOnce;
pubstructServerlessModels{
style_type:String,
embedding_models:[Component;4],
instruct_models:[Component;5],
instruct_models:[Component;6],
summarization_models:[Component;1],
}

Expand DownExpand Up@@ -48,46 +48,53 @@ impl ServerlessModels {
],
instruct_models:[
Component::from(Row::new(&[
"meta-llama/Meta-Llama-3.1-70B-Instruct".into(),
"70,000".into(),
"70,000".into(),
"8,000".into(),
"meta-llama/Meta-Llama-3.1-405B-Instruct".into(),
"405".into(),
"405".into(),
"128k".into(),
"Highest quality".into(),
])),
Component::from(Row::new(&[
"meta-llama/Meta-Llama-3.1-70B-Instruct".into(),
"70".into(),
"70".into(),
"128k".into(),
"High quality".into(),
])),
Component::from(Row::new(&[
"meta-llama/Meta-Llama-3.1-8B-Instruct".into(),
"8,000".into(),
"8,000".into(),
"8,000".into(),
"High quality, low latency".into(),
"8".into(),
"8".into(),
"128k".into(),
"Low latency".into(),
])),
Component::from(Row::new(&[
"microsoft/Phi-3-mini-128k-instruct".into(),
"3,820".into(),
"3,820".into(),
"128,000".into(),
"3.8".into(),
"3.8".into(),
"128k".into(),
"Lowest latency".into(),
])),
Component::from(Row::new(&[
"mistralai/Mixtral-8x7B-Instruct-v0.1".into(),
"56,000".into(),
"12,900".into(),
"32,768".into(),
"56".into(),
"12.9".into(),
"32k".into(),
"MOE high quality".into(),
])),
Component::from(Row::new(&[
"mistralai/Mistral-7B-Instruct-v0.2".into(),
"7,000".into(),
"7,000".into(),
"32,768".into(),
"High quality, low latency".into(),
"7".into(),
"7".into(),
"32k".into(),
"Low latency".into(),
])),
],
summarization_models:[Component::from(Row::new(&[
"google/pegasus-xsum".into(),
"568".into(),
"512".into(),
"8,000".into(),
"8k".into(),
]))],
}
}
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -24,8 +24,8 @@ <h4 class="<%- heading_style %>">Instruct Models</h4>
<divclass="mb-5">
<%+ Table::new(&[
"Name",
"Parameters (M)",
"Active Parameters (M)",
"Parameters (B)",
"Active Parameters (B)",
"Context size",
"Strengths",
], &instruct_models) %>
Expand All@@ -35,7 +35,7 @@ <h4 class="<%- heading_style %>">Summarization Models</h4>
<divclass="mb-5">
<%+ Table::new(&[
"Name",
"Parameters (M)",
"Parameters (B)",
"Context size",
"Strengths",
], &summarization_models) %>
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp