File size: 11,335 Bytes
3b3f566 e6c77d8 89f8b1b 3b3f566 67bcd25 3b3f566 e540281 3b3f566 89f8b1b 67bcd25 89f8b1b 3b3f566 89f8b1b 67bcd25 89f8b1b 3b3f566 89f8b1b 3b3f566 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 | from __future__ import annotations
import argparse
import unicodedata
from functools import lru_cache
from pathlib import Path
from typing import Any
import pandas as pd
from huggingface_hub import HfApi, hf_hub_download
from language import ALL_LANGS, LANG_ISO2_TO_ISO3, canonical_lang, is_latin_script_compatible
from sentence_sampling import sample_multi_group_bundle, sample_single_group_bundle
FLEURS_DATASET = "google/fleurs"
FLEURS_CACHE_DIR = Path(__file__).with_name("data") / "fleurs"
FLEURS_PARQUET_PATH = FLEURS_CACHE_DIR / "fleurs_text_only.parquet"
FLEURS_DOWNLOAD_DIR = FLEURS_CACHE_DIR / "downloads"
FLEURS_TSV_COLUMNS = [
"id",
"file_name",
"source_sentence",
"transcription",
"tokens",
"num_samples",
"gender",
]
FLEURS_SPLIT_ORDER = {"train": 0, "validation": 1, "test": 2}
FLEURS_LEAN_COLUMNS = ["id", "text", "source_lang", "model_lang", "split"]
def _normalize_model_lang(source_lang: str) -> str:
"""Map a FLEURS locale like `am_et` to the model language code."""
base_lang = source_lang.split("_", 1)[0].strip().lower()
return canonical_lang(base_lang)
def _discover_tsv_files() -> list[str]:
"""Return all FLEURS TSV metadata files, preferring the local cache."""
local_root = FLEURS_DOWNLOAD_DIR / "data"
local_files = sorted(local_root.rglob("*.tsv"))
if local_files:
return [str(path.relative_to(FLEURS_DOWNLOAD_DIR)) for path in local_files]
api = HfApi()
try:
files = api.list_repo_files(repo_id=FLEURS_DATASET, repo_type="dataset")
except TypeError:
files = api.list_repo_files(FLEURS_DATASET, repo_type="dataset")
tsv_files = [
file_path
for file_path in files
if file_path.startswith("data/") and file_path.endswith(".tsv")
]
if not tsv_files:
raise RuntimeError("Could not find any FLEURS TSV metadata files.")
return sorted(tsv_files)
def _normalize_split_name(file_name: str) -> str:
stem = Path(file_name).stem.lower()
if stem == "dev":
return "validation"
return stem
def _normalize_text_key(text: str) -> str:
"""Normalize text for deduping while keeping the original text intact."""
normalized = unicodedata.normalize("NFKC", text)
normalized = " ".join(normalized.split())
return normalized.casefold().strip()
def _download_tsv(file_path: str) -> Path:
local_candidate = FLEURS_DOWNLOAD_DIR / file_path
if local_candidate.exists():
return local_candidate
FLEURS_DOWNLOAD_DIR.mkdir(parents=True, exist_ok=True)
try:
local_path = hf_hub_download(
repo_id=FLEURS_DATASET,
repo_type="dataset",
filename=file_path,
local_dir=str(FLEURS_DOWNLOAD_DIR),
)
except TypeError:
local_path = hf_hub_download(
repo_id=FLEURS_DATASET,
repo_type="dataset",
filename=file_path,
cache_dir=str(FLEURS_DOWNLOAD_DIR),
)
return Path(local_path)
def _frame_from_tsv(tsv_path: Path, source_lang: str) -> pd.DataFrame:
records: list[dict[str, Any]] = []
header_seen = False
header_markers = {name.lower() for name in FLEURS_TSV_COLUMNS}
with tsv_path.open("r", encoding="utf-8", newline="") as handle:
for line in handle:
line = line.rstrip("\n")
if not line.strip():
continue
parts = line.split("\t", 6)
if not header_seen:
header_candidate = [part.strip().lower() for part in parts]
if header_markers.issubset(set(header_candidate)):
header_seen = True
continue
header_seen = True
if len(parts) < len(FLEURS_TSV_COLUMNS):
parts.extend([""] * (len(FLEURS_TSV_COLUMNS) - len(parts)))
elif len(parts) > len(FLEURS_TSV_COLUMNS):
parts = parts[: len(FLEURS_TSV_COLUMNS) - 1] + ["\t".join(parts[len(FLEURS_TSV_COLUMNS) - 1 :])]
record = dict(zip(FLEURS_TSV_COLUMNS, parts, strict=True))
records.append(record)
if not records:
return pd.DataFrame()
frame = pd.DataFrame.from_records(records)
frame = frame.fillna("")
frame["source_sentence"] = frame["source_sentence"].astype(str).str.strip()
frame["transcription"] = frame["transcription"].astype(str).str.strip()
frame["tokens"] = frame["tokens"].astype(str).str.strip()
frame["text"] = frame["transcription"].where(frame["transcription"].ne(""), frame["source_sentence"])
frame["raw_text"] = frame["source_sentence"].where(frame["source_sentence"].ne(""), frame["transcription"])
frame["source"] = "fleurs"
frame["source_lang"] = source_lang
frame["model_lang"] = _normalize_model_lang(source_lang)
frame["split"] = _normalize_split_name(tsv_path.name)
frame["lang_iso3"] = frame["model_lang"].map(lambda lang: LANG_ISO2_TO_ISO3.get(lang, ""))
frame["language_name"] = source_lang
frame["text"] = frame["text"].astype(str).str.strip().replace("", pd.NA)
frame["raw_text"] = frame["raw_text"].astype(str).str.strip()
frame = frame[frame["text"].notna()].reset_index(drop=True)
return frame
def _post_process_fleurs_frame(frame: pd.DataFrame) -> pd.DataFrame:
"""Drop redundant rows and keep only the lean demo columns."""
if frame.empty:
return frame
frame = frame.copy()
frame["split_rank"] = frame["split"].map(lambda split: FLEURS_SPLIT_ORDER.get(str(split), 99))
frame["text_key"] = frame["text"].astype(str).map(_normalize_text_key)
frame["id_sort"] = pd.to_numeric(frame["id"], errors="coerce").fillna(10**18)
frame = frame[frame["text_key"].ne("")].sort_values(
by=["source_lang", "text_key", "split_rank", "id_sort"],
kind="stable",
)
frame = frame.drop_duplicates(subset=["source_lang", "text_key"], keep="first")
lean = frame.loc[:, [col for col in FLEURS_LEAN_COLUMNS if col in frame.columns]].copy()
lean["text"] = frame["text"].astype(str).values
lean["source_lang"] = frame["source_lang"].astype(str).values
lean["model_lang"] = frame["model_lang"].astype(str).values
lean["split"] = frame["split"].astype(str).values
lean["id"] = pd.to_numeric(frame["id"], errors="coerce").fillna(-1).astype(int).values
lean = lean[lean["text"].astype(str).str.strip().ne("")].reset_index(drop=True)
return lean
def build_fleurs_text_parquet(
parquet_path: str | Path = FLEURS_PARQUET_PATH,
) -> Path:
"""Download FLEURS TSV metadata and persist a text-only parquet cache."""
parquet_path = Path(parquet_path)
parquet_path.parent.mkdir(parents=True, exist_ok=True)
frames: list[pd.DataFrame] = []
for repo_path in _discover_tsv_files():
source_lang = Path(repo_path).parent.name
tsv_path = _download_tsv(repo_path)
frame = _frame_from_tsv(tsv_path, source_lang)
if not frame.empty:
frames.append(frame)
if not frames:
raise RuntimeError("No rows were loaded from the FLEURS TSV metadata files.")
combined = pd.concat(frames, ignore_index=True)
before_rows = len(combined)
combined = _post_process_fleurs_frame(combined)
combined.to_parquet(parquet_path, index=False)
print(
f"Built lean FLEURS parquet with {len(combined):,} rows "
f"from {before_rows:,} raw rows and {len(combined.columns)} columns."
)
return parquet_path
@lru_cache(maxsize=1)
def load_fleurs_table(parquet_path: str | Path = FLEURS_PARQUET_PATH) -> pd.DataFrame:
"""Load the cached FLEURS text-only parquet into memory."""
parquet_path = Path(parquet_path)
if not parquet_path.exists():
raise FileNotFoundError(
f"Missing FLEURS cache at {parquet_path}. "
"Run `./.venv/bin/python fleurs_cache.py` once while online to build it."
)
frame = pd.read_parquet(parquet_path)
if "text" not in frame.columns:
raise RuntimeError("FLEURS parquet cache is missing the text column.")
return frame
def _row_to_sentence(row: pd.Series) -> dict[str, Any]:
source_lang = str(row.get("source_lang", "")).strip()
model_lang = str(row.get("model_lang", "")).strip()
lang_iso2 = model_lang or _normalize_model_lang(source_lang)
language = str(row.get("language_name", source_lang)).strip()
text = str(row.get("text", "")).strip()
return {
"text": text,
"raw_text": text,
"source": "fleurs",
"source_lang": source_lang,
"model_lang": model_lang or lang_iso2,
"lang_iso2": lang_iso2,
"lang_iso3": LANG_ISO2_TO_ISO3.get(lang_iso2, ""),
"language": language,
"split": str(row.get("split", "")).strip(),
"fleurs_id": int(row.get("id", -1)) if str(row.get("id", "-1")).strip().lstrip("-").isdigit() else -1,
}
def fetch_random_fleurs_sentence(
*,
attempts: int = 8,
parquet_path: str | Path = FLEURS_PARQUET_PATH,
) -> dict[str, Any]:
"""Fetch one random text sample, sometimes repeated within one language."""
frame = load_fleurs_table(parquet_path)
candidate_frame = frame[frame["model_lang"].isin(ALL_LANGS)] if "model_lang" in frame.columns else frame
if "source_lang" in candidate_frame.columns:
candidate_frame = candidate_frame[
candidate_frame.apply(
lambda row: is_latin_script_compatible(
str(row.get("model_lang", "")),
str(row.get("source_lang", "")),
),
axis=1,
)
]
return sample_single_group_bundle(
candidate_frame,
group_column="model_lang",
row_to_sentence=_row_to_sentence,
attempts=attempts,
)
def fetch_random_fleurs_sentence_mix(
*,
min_sentences: int = 2,
max_sentences: int = 3,
parquet_path: str | Path = FLEURS_PARQUET_PATH,
) -> dict[str, Any]:
"""Fetch 2-3 random FLEURS sentences from distinct languages and concatenate them."""
frame = load_fleurs_table(parquet_path)
candidate_frame = frame[frame["model_lang"].isin(ALL_LANGS)] if "model_lang" in frame.columns else frame
if "source_lang" in candidate_frame.columns:
candidate_frame = candidate_frame[
candidate_frame.apply(
lambda row: is_latin_script_compatible(
str(row.get("model_lang", "")),
str(row.get("source_lang", "")),
),
axis=1,
)
]
bundle = sample_multi_group_bundle(
candidate_frame,
group_column="model_lang",
row_to_sentence=_row_to_sentence,
min_groups=min_sentences,
max_groups=max_sentences,
)
return {
**bundle,
"source": "fleurs-mix",
}
def main() -> None:
parser = argparse.ArgumentParser(description="Build the cached text-only FLEURS parquet.")
parser.add_argument(
"--output",
default=str(FLEURS_PARQUET_PATH),
help="Output parquet path for the cached FLEURS text rows.",
)
args = parser.parse_args()
path = build_fleurs_text_parquet(args.output)
print(f"Wrote FLEURS text cache to {path}")
if __name__ == "__main__":
main()
|