science-release-map / src /constants /organizations.ts
cgeorgiaw's picture
cgeorgiaw HF Staff
avi_tag_selector (#1)
cd201c7 verified
raw
history blame
2.13 kB
import { ProviderInfo } from "../types/heatmap";
// Scientific area tags
export const SCIENTIFIC_TAGS = [
{ id: "antibody", label: "antibody" },
{ id: "hormones", label: "hormones" },
{ id: "materials-science", label: "materials-science" },
{ id: "drug-discovery", label: "drug-discovery" },
{ id: "biology", label: "biology" },
{ id: "medicine", label: "medicine" },
{ id: "physics", label: "physics" },
{ id: "data", label: "data" },
{ id: "education", label: "education" },
];
export const ORGANIZATIONS: ProviderInfo[] = [
{
color: "#ff7000",
authors: ["LeMaterial", "Entalpic"],
tags: ["materials-science", "drug-discovery"]
},
{
color: "#1877F2",
authors: ["arcinstitute"],
tags: ["biology", "medicine", "drug-discovery"]
},
{
color: "#10A37F",
authors: ["SandboxAQ"],
tags: ["physics", "materials-science", "drug-discovery"]
},
{
color: "#cc785c",
authors: ["Anthropic"],
tags: ["data", "education"]
},
{
color: "#DB4437",
authors: ["polymathic-ai"],
tags: ["physics", "data"]
},
{
color: "#F45098",
authors: ["NASA-AIML", "nasa-ibm-ai4science", "nasa-impact"],
tags: ["physics", "data", "education"]
},
{
color: "#FEB800",
authors: ["facebook"],
tags: ["data", "education"]
},
{
color: "#76B900",
authors: ["nvidia"],
tags: ["data", "physics", "materials-science"]
},
{
color: "#0088cc",
authors: ["Merck"],
tags: ["drug-discovery", "medicine", "biology"]
},
{
color: "#0088cc",
authors: ["wanglab"],
tags: ["biology", "medicine"]
},
{
color: "#0088cc",
authors: ["jablonkagroup"],
tags: ["materials-science", "drug-discovery"]
},
{
color: "#4C6EE6",
authors: ["Orbital-Materials"],
tags: ["materials-science", "physics"]
},
{
color: "#4C6EE6",
authors: ["Xaira-Therapeutics"],
tags: ["drug-discovery", "medicine", "biology", "antibody"]
},
{
color: "#FEC912",
authors: ["hugging-science"],
tags: ["data", "education", "biology", "physics"]
},
];