SourceScore

Verified claim · AI-ML · 100% confidence

ELMo (Embeddings from Language Models) introduced in paper: Deep contextualized word representations (Peters et al., 2018).

Last verified 2026-05-16 · Methodology veritas-v0.1 · ee150c6e44364a3d

Structured fields

Subject
ELMo (Embeddings from Language Models)
Predicate
introduced_in_paper
Object
Deep contextualized word representations (Peters et al., 2018)
Confidence
100%
Tags
elmo · word-embeddings · contextualized · foundational · 2018 · naacl

Sources (2)

  1. [1] preprint · arXiv (Peters, Neumann, Iyyer, Gardner, Clark, Lee, Zettlemoyer) · 2018-02-15

    Deep contextualized word representations
    We introduce a new type of deep contextualized word representation that models both (1) complex characteristics of word use (e.g., syntax and semantics), and (2) how these uses vary across linguistic contexts (i.e., to model polysemy).
  2. [2] peer reviewed · ACL Anthology · 2018-06-01

    Deep contextualized word representations (NAACL 2018)

Cite this claim

Ready-to-paste citation (Markdown / plain text):

ELMo (Embeddings from Language Models) introduced in paper: Deep contextualized word representations (Peters et al., 2018). — SourceScore Claim ee150c6e44364a3d (verified 2026-05-16). https://sourcescore.org/api/v1/claims/ee150c6e44364a3d.json

Embed this claim

Drop this iframe into any blog post, docs page, or knowledge base. The widget renders the signed claim + primary source + click-through to this canonical page. CC-BY 4.0; attribution included.

<iframe src="https://sourcescore.org/embed/claim/ee150c6e44364a3d/" width="100%" height="360" frameborder="0" loading="lazy" title="ELMo (Embeddings from Language Models) introduced in paper: Deep contextualized word representations (Peters et al., 2018)."></iframe>

Preview: open in new tab

Related claims

Other verified claims sharing tags with this one — useful for LLM retrieval graphs and citation discovery.

Use this claim in your code

Fetch this signed envelope from your application. The response includes the verbatim excerpt, primary source URLs, and an HMAC-SHA256 signature you can verify locally for audit trails.

cURL

curl https://sourcescore.org/api/v1/claims/ee150c6e44364a3d.json

JavaScript / TypeScript

const r = await fetch("https://sourcescore.org/api/v1/claims/ee150c6e44364a3d.json"); const envelope = await r.json(); console.log(envelope.claim.statement); // "ELMo (Embeddings from Language Models) introduced in paper: Deep contextualized word representations (Peters et al., 2018)."

Python

import httpx r = httpx.get("https://sourcescore.org/api/v1/claims/ee150c6e44364a3d.json") envelope = r.json() print(envelope["claim"]["statement"]) # "ELMo (Embeddings from Language Models) introduced in paper: Deep contextualized word representations (Peters et al., 2018)."

LangChain (retrieve-then-cite)

from langchain_core.tools import tool import httpx @tool def get_elmo_embeddings_from_language_models_fact() -> dict: """Fetch the verified SourceScore claim for ELMo (Embeddings from Language Models).""" r = httpx.get("https://sourcescore.org/api/v1/claims/ee150c6e44364a3d.json") return r.json()