Skip to content

Commit 1954074

Browse files
authored
feat: Add ML Commons project to Tattle's landing page (#231)
* Add ML Commons project to Tattle's landing page * Move ML Commons project to the top of Other Projects section * Updated safety-benchmark URL to ml-commons-safety-benchmark * Updated styling for 'This project has concluded' section * Updated project team section to use a 3-column grid for improved presentation * Updated team member layout: Removed vertical spacing between names in the grid. * Increase vertical spacing between team members' names using gap-y-2 * Feat: Add and display ml-commons-report-hero.png on the page
1 parent be5093f commit 1954074

File tree

2 files changed

+56
-2
lines changed

2 files changed

+56
-2
lines changed

src/pages/products/index.jsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ import { getImage, getSrc } from "gatsby-plugin-image";
1414
// }
1515

1616
var other_projects = [
17+
{
18+
heading: "Building a Safety Benchmark Dataset in Hindi",
19+
description: "This project aimed to build a dataset of prompts in Hindi as part of ML Commons' safety benchmark.",
20+
target: "/products/ml-commons-safety-benchmark"
21+
},
1722
{
1823
heading: "Developing Standardized Metrics for Github",
1924
description: "This project tries to understand how data from GitHub platform usage can contribute to research in international development, public policy, and economics.",
@@ -43,8 +48,7 @@ var other_projects = [
4348
heading: "Khoj",
4449
description: "Khoj tells you if an image has appeared in a fact-checking article. Khoj indexes and searches through data scraped from IFCN certified fact checking sites.",
4550
target: "/products/khoj"
46-
},
47-
51+
}
4852
]
4953

5054
const ResponsiveLayoutDatasets = ({ children }) => {
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
import DefaultLayoutNarrow from "@/components/default-layout-narrow";
2+
3+
export default function Layout({ children }) {
4+
return <DefaultLayoutNarrow>{children}</DefaultLayoutNarrow>;
5+
}
6+
7+
import { Box, Text, Image } from "grommet";
8+
import { LatestProductBlogsUpdates } from "../../components/LatestProductBlogsUpdates";
9+
import mlCommonsImage from "../../images/ml-commons-report-hero.png";
10+
11+
# Building a Safety Benchmark Dataset in Hindi
12+
13+
<Box
14+
background="neutral-1"
15+
pad={{ horizontal: "small", vertical: "xxsmall" }}
16+
round="xsmall"
17+
align="center"
18+
width="fit-content"
19+
>
20+
<Text size="small">This project has concluded.</Text>
21+
</Box>
22+
23+
<Box align="center" margin={{ top: "20px" }}>
24+
<Image src={mlCommonsImage} alt="ML Commons Report" fit="cover" />
25+
</Box>
26+
27+
In 2024, Tattle was selected in this pilot project to build a dataset of prompts in Hindi as part of ML Commons' safety benchmark.
28+
We followed Uli's participatory approach and created 2000 prompts in Hindi on two hazard categories: hate and sex-related crimes.
29+
These prompts were created by an expert group, consisting of individuals with expertise in journalism, social work, feminist advocacy,
30+
gender studies, fact-checking, political campaigning, education, psychology, and research.
31+
32+
## Project Team
33+
<div class="grid grid-cols-3 gap-x-4 gap-y-2">
34+
<p class="m-0">Mansi Gupta</p>
35+
<p class="m-0">Srravya C</p>
36+
<p class="m-0">Vamsi Krishna Pothuru</p>
37+
<p class="m-0">Saumya Gupta</p>
38+
<p class="m-0">Tarunima Prabhakar</p>
39+
<p class="m-0">Aatman Vaidya</p>
40+
<p class="m-0">Kaustubha Kalidindi</p>
41+
<p class="m-0">Denny George</p>
42+
<p class="m-0">Maanas B</p>
43+
</div>
44+
45+
46+
## Outcomes
47+
Our report, outlining the process of developing this dataset, is available here:
48+
[View Report](https://drive.google.com/file/d/1OKpZ7qqT6hjbzaeUC7UnBF1oCTn7c70z/view)
49+
50+
<LatestProductBlogsUpdates projects={["ml-commons-safety-benchmark"]}/>

0 commit comments

Comments
 (0)