Skip to content

Commit

Permalink
Quartz sync: Nov 25, 2024, 2:17 PM
Browse files Browse the repository at this point in the history
  • Loading branch information
nataliaElv committed Nov 25, 2024
1 parent 0b973e4 commit 64c8bb6
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 18 deletions.
2 changes: 1 addition & 1 deletion content/Resources for data annotation.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ Here are some resources I always go to for data annotation and how to have the b
- Pustejovsky, J., & Stubbs, A. (2012). _Natural Language Annotation for Machine Learning: A guide to corpus-building for applications_. O'Reilly Media, Inc. https://www.google.es/books/edition/Natural_Language_Annotation_for_Machine_/QtzmqamXxx4C?hl=en&gbpv=1

📄 Papers & white-papers:
- _Anotación de corpus lingüísticos: metodología utilizada en el Instituto de Ingeniería del Conocimiento (IIC)_ https://www.iic.uam.es/pdf/anotacion-corpus-linguisticos.pdf
- _Anotación de corpus lingüísticos: metodología utilizada en el Instituto de Ingeniería del Conocimiento (IIC)_ https://www.iic.uam.es/pdf/anotacion-corpus-linguisticos.pdf
7 changes: 4 additions & 3 deletions content/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,18 @@ title: About me
draft: false
tags:
---

🚧 This site is under construction... 🚧

Hi! 👋
I'm Natalia, a Computational Linguist from Madrid (Spain) working at Hugging Face 🤗. I'm passionate about languages and curating high-quality data for AI.
I'm Natalia, a Computational Linguist from Madrid (Spain) working at Hugging Face 🤗. I'm passionate about languages and curating high-quality data for AI.

Before starting my journey in AI, I studied Classics and did a PhD at the University of Cambridge on Ancient Greek Linguistics, more specifically on the linguistic comparison of archaic Greek alphabets.

In my free time, I like playing videogames. My favourite ones are: "Papers, please", "Outer Wilds" and "Stardew Valley".

In this blog, I'll try to share some knowledge about data curation & annotation and linguistics. Bear with me until this starts looking a bit more populated.

🚧 This site is under construction... 🚧

---
Follow me on social media:
- Bluesky: https://bsky.app/profile/nataliaelv.bsky.social
Expand Down
22 changes: 12 additions & 10 deletions quartz.layout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,35 +20,37 @@ export const sharedPageComponents: SharedLayout = {
// components for pages that display a single page (e.g. a single note)
export const defaultContentPageLayout: PageLayout = {
beforeBody: [
Component.PageTitle(),
Component.Breadcrumbs(),
Component.ArticleTitle(),
Component.ContentMeta(),
Component.TagList(),
],
left: [
Component.PageTitle(),
Component.MobileOnly(Component.Spacer()),
// Component.MobileOnly(Component.Spacer()),
Component.Search(),
Component.Darkmode(),
Component.DesktopOnly(Component.Explorer()),
Component.Darkmode(),
],
right: [
Component.Graph(),
Component.DesktopOnly(Component.TableOfContents()),
Component.Backlinks(),
Component.Graph(),
Component.TagList(),
Component.Backlinks(),
],
}

// components for pages that display lists of pages (e.g. tags or folders)
export const defaultListPageLayout: PageLayout = {
beforeBody: [Component.Breadcrumbs(), Component.ArticleTitle(), Component.ContentMeta()],
left: [
beforeBody: [
Component.PageTitle(),
Component.MobileOnly(Component.Spacer()),
Component.Breadcrumbs(),
Component.ArticleTitle(),
Component.ContentMeta()
],
left: [
Component.Search(),
Component.Darkmode(),
Component.DesktopOnly(Component.Explorer()),
Component.Darkmode(),
],
right: [],
}
8 changes: 4 additions & 4 deletions quartz/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ export default ((opts?: Options) => {
const links = opts?.links ?? []
return (
<footer class={`${displayClass ?? ""}`}>
<p>
{i18n(cfg.locale).components.footer.createdWith}{" "}
<a href="https://quartz.jzhao.xyz/">Quartz v{version}</a> © {year}
</p>
<ul>
{Object.entries(links).map(([text, link]) => (
<li>
<a href={link}>{text}</a>
</li>
))}
</ul>
<p>
{i18n(cfg.locale).components.footer.createdWith}{" "}
<a href="https://quartz.jzhao.xyz/">Quartz v{version}</a> © {year}
</p>
</footer>
)
}
Expand Down

0 comments on commit 64c8bb6

Please sign in to comment.