Commit
•
523ce64
1
Parent(s):
1795850
Update links
Browse files
script.js
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
|
2 |
-
const lead_announcement = `<p>I’m thrilled to share that I’ll be leading
|
3 |
-
const recruit_collaborators = `<p>Do you want to improve the quality of language models in
|
4 |
const call_contributors_generic = `<p>Do you want to improve the quality of language models in your language?</p><p>Join me in this collaborative annotation sprint! No experience needed - simply follow the link to start annotating!</p>`
|
5 |
-
const recruit_leads = `<p>I’m thrilled to share that I’ll be leading
|
6 |
|
7 |
function createCard(title, text, url, image_src, image_url) {
|
8 |
let url_text = text.replaceAll('<p>', '').replaceAll('</p>', '%0A%0A')
|
@@ -33,9 +33,8 @@ function addCardToContainer(title, text, url, image_src, image_url) {
|
|
33 |
cardContainer.innerHTML += cardHTML;
|
34 |
}
|
35 |
|
36 |
-
addCardToContainer("Announce you've been selected to be a lead!", lead_announcement, "https://
|
37 |
-
addCardToContainer("Call for people to contribute to the effort,
|
38 |
-
addCardToContainer("Call for collaborators for your language (edit this and translate it for your language, see examples below)", recruit_collaborators, 'https://
|
39 |
-
addCardToContainer("Example: Call for collaborators
|
40 |
-
addCardToContainer("Example: Call for collaborators
|
41 |
-
addCardToContainer("Call for leads in other languages", recruit_leads, 'https://nataliaelv-language-leads-dashboard.hf.space/', "images/call_contributors_generic.png", null);
|
|
|
1 |
|
2 |
+
const lead_announcement = `<p>I’m thrilled to share that I’ll be leading [language] in the Multilingual FineWeb collaborative annotation sprint! 🤗</p><p>I’ll be helping to build an open dataset to improve language models for our language. Do you want to join me?</p>`
|
3 |
+
const recruit_collaborators = `<p>Do you want to improve the quality of language models in [language]?</p><p>Join me in this collaborative annotation sprint! No experience needed - simply follow the link to start annotating!</p>`
|
4 |
const call_contributors_generic = `<p>Do you want to improve the quality of language models in your language?</p><p>Join me in this collaborative annotation sprint! No experience needed - simply follow the link to start annotating!</p>`
|
5 |
+
const recruit_leads = `<p>I’m thrilled to share that I’ll be leading [language] in the Multilingual FineWeb collaborative annotation sprint! 🤗</p><p>Would you like to lead the efforts in your own language? Check if it’s still listed!</p>`
|
6 |
|
7 |
function createCard(title, text, url, image_src, image_url) {
|
8 |
let url_text = text.replaceAll('<p>', '').replaceAll('</p>', '%0A%0A')
|
|
|
33 |
cardContainer.innerHTML += cardHTML;
|
34 |
}
|
35 |
|
36 |
+
addCardToContainer("Announce you've been selected to be a lead!", lead_announcement, "https://huggingfacefw-discussion.hf.space", "images/lead_announcement.png", "https://docs.google.com/presentation/d/1CA4xLLf6rpUlDBym0SORrJZskNDKiBc51tngZkyGDXU/edit#slide=id.p");
|
37 |
+
addCardToContainer("Call for people to contribute to the effort, no matter the language!", call_contributors_generic, "https://data-is-better-together-fineweb-c.hf.space/", "images/call_contributors_generic.png", null);
|
38 |
+
addCardToContainer("Call for collaborators for your language (edit this and translate it for your language, see examples below)", recruit_collaborators, 'https://data-is-better-together-fineweb-c.hf.space/', "images/call_contributors_template.png", "https://docs.google.com/presentation/d/1Mouh1HpmJYPZFJ-99y9bRZyeb2lLqD2KB3btnXwVJyU/edit#slide=id.p");
|
39 |
+
addCardToContainer("Example: Call for collaborators in Spanish (ready to publish if you want)", recruit_collaborators, 'https://data-is-better-together-fineweb-c.hf.space/', "images/call_contributors_spanish.png", null);
|
40 |
+
addCardToContainer("Example: Call for collaborators in French (ready to publish if you want)", recruit_collaborators, 'https://data-is-better-together-fineweb-c.hf.space/', "images/call_contributors_french.png", null);
|
|