CoolFace
Datasetpublic

VietAlphaLabs/zh-en-1945-mathematics-dictionary

VietAlpha English–Chinese Mathematics Dictionary 數學名詞, 1945 VietAlpha Lab · Website The VietAlpha English–Chinese Mathematics Dictionary is a machine-readable, verified digital edition of 數學名詞 (Mathematical Terms), the English–Chinese mathematical terminology standard compiled by the National Institute for Compilation and Translation (國立編譯館) and promulgated by the Ministry of Education, in its 1945 printing. The printed work lists 3,426 numbered English terms with their standardized… See the full description on the dataset page: https://huggingface.co/datasets/VietAlphaLabs/zh-en-1945-mathematics-dictionary.

sourceHugging Faceapache-2.0updated 4d agoView on Hugging Face
0likes57downloads
Dataset Card

<h1 align="center">VietAlpha English–Chinese Mathematics Dictionary</h1> <h3 align="center"><em>數學名詞, 1945</em></h3>

<p align="center"> <a href="https://huggingface.co/VietAlphaLabs"><strong>VietAlpha Lab</strong></a> · <a href="https://vietalpha.org"><strong>Website</strong></a> </p>

<br>

The VietAlpha English–Chinese Mathematics Dictionary is a machine-readable, verified digital edition of 數學名詞 (Mathematical Terms), the English–Chinese mathematical terminology standard compiled by the National Institute for Compilation and Translation (國立編譯館) and promulgated by the Ministry of Education, in its 1945 printing.

The printed work lists 3,426 numbered English terms with their standardized Traditional Chinese equivalents, arranged alphabetically in two columns over 61 pages. This release contains 3,413 entries covering the whole of that book.


What the Entries Look Like

Each printed line carries an English term (often with a parenthesized synonym note such as (Syn: Monodrome function)) and one or more Chinese equivalents separated by ,. Optional elements in either language are printed in brackets ([Circular] cone / 〔圓〕錐), and proper names inside the Chinese term are underlined in the print (the 亞倍爾 of 亞倍爾函數, Abelian functions). All of this is preserved:

Printed featureHow it is represented
English term with synonym noteenglish, verbatim including (Syn: …)
Chinese equivalentschinese, verbatim, full-width punctuation ,()〔〕
Underlined proper nameschinese_underlined: the underlined substrings

The text is transcribed as printed: the book's historical term choices (亞倍爾 for Abel, 函數 throughout, 壔 alongside 稜柱 for prisms) and its Traditional Chinese glyph forms are preserved as the book prints them.


Record Schema

json
{
  "record_id": "0003",
  "english": "Abelian functions",
  "chinese": "亞倍爾函數",
  "chinese_underlined": ["亞倍爾"]
}
FieldTypeDescription
record_idstrStable record identifier
englishstrEnglish term as printed, including any (Syn: …) synonym note
chinesestrTraditional Chinese equivalent(s) as printed, ,-separated when several
chinese_underlinedlist[str]Substrings of chinese underlined in the print (proper names); empty when none

Files

FileDescription
`dictionary.parquet`3,413 entries in Apache Parquet; backs the dictionary config and the Hub viewer
`dictionary.jsonl`The same 3,413 entries as JSON Lines (UTF-8, one object per line)
`stats.json`Release statistics: entry counts
`NOTICE`Attribution and historical source statement
`LICENSE`Apache License 2.0

Loading the Data

Hugging Face datasets

python
from datasets import load_dataset

dataset = load_dataset(
    "VietAlphaLabs/zh-en-1945-mathematics-dictionary",
    "dictionary",
    split="train",
)

print(f"Loaded {len(dataset)} entries")
print(dataset[0])

Pandas

python
import pandas as pd

df = pd.read_parquet("dictionary.parquet")

# Every term the book gives for "function"
fn = df[df["english"].str.contains(r"\bfunction", case=False)]
print(f"{len(fn)} function entries")

# Entries with an underlined proper name (eponymous terms)
named = df[df["chinese_underlined"].apply(len) > 0]
print(f"{len(named)} eponymous entries")

Licensing & Attribution

  • —Transcriptions & dataset code: Licensed under the Apache License, Version 2.0 © 2026 VietAlpha Lab.
  • —Historical work: The underlying terminology standard 數學名詞 (1945), compiled by the National Institute for Compilation and Translation (國立編譯館), is in the public domain.
  • —When citing or redistributing this dataset, please retain the `NOTICE` file and cite as follows:
bibtex
@dataset{vietalpha2026shuxuemingci,
  author       = {VietAlpha Lab},
  title        = {VietAlpha English–Chinese Mathematics Dictionary (數學名詞, 1945)},
  year         = {2026},
  publisher    = {Hugging Face},
  howpublished = {\url{https://huggingface.co/datasets/VietAlphaLabs/zh-en-1945-mathematics-dictionary}},
  note         = {Digitized and reconstructed from 數學名詞, National Institute for Compilation and Translation (1945)}
}