Xianbao QIAN
commited on
Commit
•
36cdaba
1
Parent(s):
09dd39a
update color
Browse files- src/pages/index.tsx +7 -7
- upload.sh +1 -0
src/pages/index.tsx
CHANGED
@@ -23,13 +23,13 @@ export default function Home() {
|
|
23 |
const [isLoading, setIsLoading] = useState(true);
|
24 |
|
25 |
const PROVIDERS_MAP: Record<string, { color: string; authors: string[] }> = {
|
26 |
-
"BAAI": { color: "#
|
27 |
-
"DeepSeek": { color: "#
|
28 |
-
"Shanghai AI Lab": { color: "#10A37F", authors: ["internlm", "OpenGVLab", "openmmlab"] }, // Fresh Green
|
29 |
-
"Alibaba": { color: "#
|
30 |
-
"GLM": { color: "#4285F4", authors: ["THUDM"] }, // Classic Blue
|
31 |
-
"Tencent": { color: "#1DA1F2", authors: ["TencentARC", "Tencent-Hunyuan"] }, // Twitter Blue
|
32 |
-
"Yi/01": { color: "#FF4500", authors: ["01-ai"] }, // Orange-Red
|
33 |
}
|
34 |
|
35 |
const generateCalendarData = (modelData: ModelData[]) => {
|
|
|
23 |
const [isLoading, setIsLoading] = useState(true);
|
24 |
|
25 |
const PROVIDERS_MAP: Record<string, { color: string; authors: string[] }> = {
|
26 |
+
"BAAI": { color: "#FF7000", authors: ["BAAI"] }, // Vibrant Orange, kept the same for consistency
|
27 |
+
"DeepSeek": { color: "#1877F2", authors: ["deepseek-ai"] }, // Updated to a darker blue for better contrast
|
28 |
+
"Shanghai AI Lab": { color: "#10A37F", authors: ["internlm", "OpenGVLab", "openmmlab"] }, // Fresh Green, unchanged as it already works well
|
29 |
+
"Alibaba": { color: "#FF6F00", authors: ["Qwen", "Alibaba-NLP", "alibaba-pai", "DAMO-NLP-SG"] }, // Bright Orange, updated from Chocolate for better contrast
|
30 |
+
"GLM": { color: "#4285F4", authors: ["THUDM"] }, // Classic Blue, unchanged for consistency with Google's blue
|
31 |
+
"Tencent": { color: "#1DA1F2", authors: ["TencentARC", "Tencent-Hunyuan"] }, // Twitter Blue, unchanged as it’s distinct and works well
|
32 |
+
"Yi/01": { color: "#FF4500", authors: ["01-ai"] }, // Orange-Red, unchanged as it provides good contrast
|
33 |
}
|
34 |
|
35 |
const generateCalendarData = (modelData: ModelData[]) => {
|
upload.sh
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
HF_HUB_ENABLE_HF_TRANSFER=1 huggingface-cli upload zh-ai-community/zh-model-release-heatmap . . --repo-type space --create-pr
|