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] 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] 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.jsonEmbed 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.
BERT (Bidirectional Encoder Representations from Transformers) introduced in paper: BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding (Devlin et al., 2018).
4c1ee70007dc89c1 · 100% confidence · shares 2 tags (foundational, 2018)
SentencePiece tokenizer introduced in paper: SentencePiece: A simple and language independent subword tokenizer and detokenizer for Neural Text Processing (Kudo & Richardson, 2018).
0d47bb8eb637a2e4 · 100% confidence · shares 2 tags (foundational, 2018)
GLUE benchmark introduced in paper: GLUE: A Multi-Task Benchmark and Analysis Platform for Natural Language Understanding (Wang et al., 2018).
aa113b5e61d5c214 · 100% confidence · shares 2 tags (foundational, 2018)
AlphaZero published in: Science journal December 2018.
b2dbbb7283a89f21 · 100% confidence · shares 2 tags (foundational, 2018)
GloVe introduced in: Pennington, Socher, Manning 2014 — global vectors for word representation.
7f9254f3c0612ed0 · 100% confidence · shares 2 tags (word-embeddings, foundational)
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.jsonJavaScript / 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()