File size: 29,409 Bytes
59c6c97 | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 | """
MINDI 1.5 Vision-Coder β Day 2 Step 2: MINDI Format Converter
Converts ALL raw datasets (JSONL) into unified MINDI training format.
Each output example:
{
"id": "mindi_000001",
"type": "code_generation",
"source": "websight",
"messages": [
{"role": "system", "content": "..."},
{"role": "user", "content": "..."},
{"role": "assistant", "content": "<|think_start|>...<|think_end|>..."}
],
"metadata": {
"language": "typescript",
"framework": "nextjs",
"has_vision": false,
"tokens": 1024,
"quality_score": 8.5
}
}
Usage:
python scripts/process_data.py # Process all
python scripts/process_data.py --source codealpaca # Process one
python scripts/process_data.py --dry-run # Preview only
"""
from __future__ import annotations
import argparse
import hashlib
import json
import logging
import random
import re
import sys
import time
from dataclasses import dataclass
from pathlib import Path
from typing import Any, Generator, Optional
from rich.console import Console
from rich.logging import RichHandler
from rich.panel import Panel
from rich.progress import (
BarColumn,
MofNCompleteColumn,
Progress,
SpinnerColumn,
TextColumn,
TimeElapsedColumn,
TimeRemainingColumn,
)
from rich.table import Table
# ββ Paths βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
PROJECT_ROOT = Path(__file__).resolve().parent.parent
DATA_RAW = PROJECT_ROOT / "data" / "raw"
DATA_PROCESSED = PROJECT_ROOT / "data" / "processed"
LOGS_DIR = PROJECT_ROOT / "logs"
TOKENIZER_PATH = PROJECT_ROOT / "data" / "tokenizer" / "mindi_tokenizer"
DATA_PROCESSED.mkdir(parents=True, exist_ok=True)
LOGS_DIR.mkdir(parents=True, exist_ok=True)
# ββ Logging βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
console = Console()
logging.basicConfig(
level=logging.INFO,
format="%(message)s",
datefmt="[%X]",
handlers=[
RichHandler(console=console, rich_tracebacks=True, show_path=False),
logging.FileHandler(LOGS_DIR / "process_data.log", encoding="utf-8"),
],
)
log = logging.getLogger("mindi.process")
# ββ System prompt βββββββββββββββββββββββββββββββββββββββββββββββββββββ
MINDI_SYSTEM_PROMPT = (
"You are MINDI 1.5 Vision-Coder, an AI built by MINDIGENOUS.AI. "
"You are an expert in Next.js 14, React, TypeScript, Tailwind CSS, "
"and UI/UX design. You see your own output and critique it to make "
"it better for the user."
)
# ββ Tokenizer (lazy loaded) ββββββββββββββββββββββββββββββββββββββββββ
_tokenizer = None
def get_tokenizer():
global _tokenizer
if _tokenizer is None:
from transformers import AutoTokenizer
_tokenizer = AutoTokenizer.from_pretrained(str(TOKENIZER_PATH), trust_remote_code=True)
log.info(f"Loaded tokenizer (vocab={len(_tokenizer):,})")
return _tokenizer
def count_tokens(text: str) -> int:
tok = get_tokenizer()
return len(tok.encode(text, add_special_tokens=False))
# ββ Language detection ββββββββββββββββββββββββββββββββββββββββββββββββ
def detect_language(code: str, filename: str = "") -> str:
"""Detect programming language from code content or filename."""
ext_map = {
".py": "python", ".js": "javascript", ".jsx": "javascript",
".ts": "typescript", ".tsx": "typescript", ".html": "html",
".css": "css", ".json": "json", ".md": "markdown",
".rs": "rust", ".go": "go", ".java": "java", ".cpp": "cpp",
".c": "c", ".rb": "ruby", ".php": "php", ".swift": "swift",
".kt": "kotlin", ".sql": "sql", ".sh": "bash",
}
if filename:
ext = Path(filename).suffix.lower()
if ext in ext_map:
return ext_map[ext]
# Heuristic detection from content
if "import React" in code or "from 'react'" in code or "jsx" in code.lower():
return "typescript" if ": " in code and ("interface " in code or "type " in code) else "javascript"
if "def " in code and "import " in code and ":" in code:
return "python"
if "func " in code and "package " in code:
return "go"
if "fn " in code and "let mut" in code:
return "rust"
if "public class" in code or "public static void" in code:
return "java"
if "<!DOCTYPE" in code or "<html" in code:
return "html"
if "function " in code or "const " in code or "=>" in code:
return "javascript"
return "unknown"
def detect_framework(code: str) -> str:
"""Detect framework from code content."""
if "'use client'" in code or "next/" in code or "Next" in code:
return "nextjs"
if "import React" in code or "from 'react'" in code:
return "react"
if "express" in code.lower():
return "express"
if "from flask" in code or "Flask(" in code:
return "flask"
if "from django" in code:
return "django"
if "import vue" in code.lower() or "defineComponent" in code:
return "vue"
return "none"
# ββ Quality scoring ββββββββββββββββββββββββββββββββββββββββββββββββββ
def score_quality(code: str, language: str) -> float:
"""Score code quality on a 1-10 scale using heuristics."""
score = 5.0
# Length bonus (not too short, not just boilerplate)
lines = code.strip().splitlines()
if len(lines) >= 10:
score += 0.5
if len(lines) >= 30:
score += 0.5
if len(lines) < 3:
score -= 2.0
# Has comments/docstrings
if "//" in code or "/*" in code or '"""' in code or "'''" in code or "#" in code:
score += 0.5
# Has type annotations (TypeScript/Python)
if language in ("typescript", "python"):
if ":" in code and ("interface " in code or "type " in code or "-> " in code):
score += 0.5
# Has proper imports
if "import " in code or "from " in code or "require(" in code:
score += 0.3
# Has error handling
if "try" in code or "catch" in code or "except" in code:
score += 0.3
# Has exports (module structure)
if "export " in code or "module.exports" in code:
score += 0.3
# Penalize very short or empty
if len(code.strip()) < 50:
score -= 1.0
# Penalize obvious low quality
if code.count("TODO") > 3 or code.count("FIXME") > 3:
score -= 0.5
if "console.log" in code and code.count("console.log") > 5:
score -= 0.3
# Has proper function/class structure
if "function " in code or "class " in code or "def " in code or "const " in code:
score += 0.3
# Tailwind/CSS usage
if "className" in code or "tailwind" in code.lower():
score += 0.3
return max(1.0, min(10.0, round(score, 1)))
# ββ Converter: wrap code in MINDI format βββββββββββββββββββββββββββββ
def wrap_mindi_assistant(
code: str,
language: str = "typescript",
filename: str = "",
thinking: str = "",
critique: str = "",
suggestions: str = "",
) -> str:
"""Wrap code in MINDI special token format."""
parts = []
# Thinking block
if thinking:
parts.append(f"<|think_start|>\n{thinking}\n<|think_end|>")
# File metadata
if filename:
framework = detect_framework(code)
parts.append(f"<|file_start|>\npath: {filename}\nlanguage: {language}\nframework: {framework}\n<|file_end|>")
# Code block
parts.append(f"<|code_start|>\n{code.strip()}\n<|code_end|>")
# Critique
if critique:
parts.append(f"<|critique_start|>\n{critique}\n<|critique_end|>")
# Suggestions
if suggestions:
parts.append(f"<|suggest_start|>\n{suggestions}\n<|suggest_end|>")
return "\n\n".join(parts)
def generate_thinking(user_request: str, language: str) -> str:
"""Generate a basic thinking block from the user request."""
verbs = ["analyze", "implement", "create", "design", "build"]
verb = random.choice(verbs)
return (
f"The user wants me to {verb} something. Let me break this down:\n"
f"1. Understand the requirements from the request\n"
f"2. Choose the right approach for {language}\n"
f"3. Write clean, production-ready code\n"
f"4. Review for best practices and accessibility"
)
def generate_critique(language: str, code: str) -> str:
"""Generate a basic code critique."""
items = [
"β
Code structure: Well-organized with clear separation of concerns",
"β
Naming: Descriptive variable and function names",
]
if language in ("typescript", "javascript"):
items.append("β
Modern syntax: Uses ES6+ features appropriately")
if "className" in code:
items.append("β
Styling: Tailwind CSS classes used correctly")
items.append("β οΈ Consider adding error handling for edge cases")
items.append("β οΈ Could benefit from unit tests")
return "Code Review:\n" + "\n".join(f"- {item}" for item in items)
def generate_suggestions() -> str:
"""Generate improvement suggestions."""
pool = [
"Add comprehensive error handling with try/catch",
"Implement loading and error states for better UX",
"Add TypeScript strict mode compliance",
"Write unit tests with Jest and Testing Library",
"Add JSDoc comments for public API",
"Consider extracting reusable hooks",
"Add proper aria attributes for accessibility",
"Implement responsive design breakpoints",
"Add performance optimization with useMemo/useCallback",
"Consider adding Storybook stories for documentation",
]
selected = random.sample(pool, min(4, len(pool)))
return "Suggested improvements:\n" + "\n".join(f"{i+1}. {s}" for i, s in enumerate(selected))
# ββ Source-specific converters ββββββββββββββββββββββββββββββββββββββββ
def convert_codealpaca(raw: dict, idx: int) -> Optional[dict]:
"""Convert CodeAlpaca example to MINDI format."""
instruction = raw.get("instruction", "").strip()
inp = raw.get("input", "").strip()
output = raw.get("output", "").strip()
if not instruction or not output:
return None
user_content = f"{instruction}\n{inp}".strip() if inp else instruction
language = detect_language(output)
quality = score_quality(output, language)
assistant_content = wrap_mindi_assistant(
code=output,
language=language,
thinking=generate_thinking(instruction, language),
critique=generate_critique(language, output),
suggestions=generate_suggestions(),
)
tokens = count_tokens(assistant_content)
return {
"id": f"mindi_{idx:06d}",
"type": "code_generation",
"source": "codealpaca",
"messages": [
{"role": "system", "content": MINDI_SYSTEM_PROMPT},
{"role": "user", "content": user_content},
{"role": "assistant", "content": assistant_content},
],
"metadata": {
"language": language,
"framework": detect_framework(output),
"has_vision": False,
"tokens": tokens,
"quality_score": quality,
},
}
def convert_codefeedback(raw: dict, idx: int) -> Optional[dict]:
"""Convert CodeFeedback example to MINDI format."""
query = raw.get("query", "").strip()
answer = raw.get("answer", "").strip()
if not query or not answer:
return None
# Extract code blocks from answer if present
code_blocks = re.findall(r"```[\w]*\n(.*?)```", answer, re.DOTALL)
code = "\n\n".join(code_blocks) if code_blocks else answer
language = detect_language(code)
quality = score_quality(code, language)
assistant_content = wrap_mindi_assistant(
code=code,
language=language,
thinking=generate_thinking(query, language),
critique=generate_critique(language, code),
suggestions=generate_suggestions(),
)
tokens = count_tokens(assistant_content)
return {
"id": f"mindi_{idx:06d}",
"type": "code_generation",
"source": "codefeedback",
"messages": [
{"role": "system", "content": MINDI_SYSTEM_PROMPT},
{"role": "user", "content": query},
{"role": "assistant", "content": assistant_content},
],
"metadata": {
"language": language,
"framework": detect_framework(code),
"has_vision": False,
"tokens": tokens,
"quality_score": quality,
},
}
def convert_starcoderdata(raw: dict, idx: int) -> Optional[dict]:
"""Convert StarCoder raw code to MINDI instruction format."""
content = raw.get("content", "").strip()
if not content or len(content) < 50:
return None
# Extract metadata
max_lines = raw.get("max_line_length", 0)
avg_line = raw.get("avg_line_length", 0)
language = detect_language(content)
quality = score_quality(content, language)
# Create a synthetic user request from the code
# Extract first comment or function/class name as context
first_lines = content[:500]
if "def " in first_lines:
match = re.search(r"def (\w+)", first_lines)
func_name = match.group(1) if match else "function"
user_request = f"Write a {language} function called `{func_name}` with proper implementation"
elif "class " in first_lines:
match = re.search(r"class (\w+)", first_lines)
class_name = match.group(1) if match else "Class"
user_request = f"Create a {language} class called `{class_name}` with full implementation"
elif "function " in first_lines or "const " in first_lines:
match = re.search(r"(?:function|const)\s+(\w+)", first_lines)
name = match.group(1) if match else "component"
user_request = f"Implement `{name}` in {language} with clean, modern code"
elif "export " in first_lines:
match = re.search(r"export\s+(?:default\s+)?(?:function|class|const)\s+(\w+)", first_lines)
name = match.group(1) if match else "module"
user_request = f"Build an exported {language} module `{name}`"
else:
user_request = f"Write this {language} code with best practices"
# Detect filename from content hints
filename = ""
if language == "python":
filename = "main.py"
elif language == "typescript":
filename = "index.tsx"
elif language == "javascript":
filename = "index.js"
assistant_content = wrap_mindi_assistant(
code=content,
language=language,
filename=filename,
thinking=generate_thinking(user_request, language),
critique=generate_critique(language, content),
suggestions=generate_suggestions(),
)
tokens = count_tokens(assistant_content)
return {
"id": f"mindi_{idx:06d}",
"type": "code_generation",
"source": "starcoderdata",
"messages": [
{"role": "system", "content": MINDI_SYSTEM_PROMPT},
{"role": "user", "content": user_request},
{"role": "assistant", "content": assistant_content},
],
"metadata": {
"language": language,
"framework": detect_framework(content),
"has_vision": False,
"tokens": tokens,
"quality_score": quality,
},
}
def convert_websight(raw: dict, idx: int) -> Optional[dict]:
"""Convert WebSight HTML+screenshot to MINDI format."""
html = raw.get("text", "").strip()
if not html:
return None
# WebSight has HTML β we keep it as-is (conversion to JSX is a training objective)
language = "html"
quality = score_quality(html, language)
has_image = "image" in raw or "screenshot" in raw
user_request = "Convert this webpage design into a modern Next.js 14 component with Tailwind CSS"
thinking = (
"The user wants me to convert a web design to Next.js. I need to:\n"
"1. Analyze the HTML structure and visual layout\n"
"2. Convert HTML elements to React JSX syntax\n"
"3. Replace CSS classes with Tailwind CSS utilities\n"
"4. Add TypeScript types and proper component structure\n"
"5. Ensure responsive design and accessibility"
)
assistant_content = wrap_mindi_assistant(
code=html,
language="typescript",
filename="src/components/ConvertedPage.tsx",
thinking=thinking,
critique=generate_critique("typescript", html),
suggestions=generate_suggestions(),
)
tokens = count_tokens(assistant_content)
return {
"id": f"mindi_{idx:06d}",
"type": "vision_code",
"source": "websight",
"messages": [
{"role": "system", "content": MINDI_SYSTEM_PROMPT},
{"role": "user", "content": user_request},
{"role": "assistant", "content": assistant_content},
],
"metadata": {
"language": "typescript",
"framework": "nextjs",
"has_vision": has_image,
"tokens": tokens,
"quality_score": quality,
},
}
def convert_synthetic(raw: dict, idx: int) -> Optional[dict]:
"""Convert synthetic data (already in near-MINDI format) to final format."""
user_content = raw.get("user", "").strip()
assistant_content = raw.get("assistant", "").strip()
source = raw.get("source", "synthetic")
if not user_content or not assistant_content:
return None
tokens = count_tokens(assistant_content)
language = raw.get("language", "typescript")
return {
"id": f"mindi_{idx:06d}",
"type": "code_generation" if "search" not in source else "search",
"source": source,
"messages": [
{"role": "system", "content": MINDI_SYSTEM_PROMPT},
{"role": "user", "content": user_content},
{"role": "assistant", "content": assistant_content},
],
"metadata": {
"language": language,
"framework": raw.get("framework", "nextjs"),
"has_vision": False,
"tokens": tokens,
"quality_score": score_quality(assistant_content, language),
},
}
def convert_evol_code(raw: dict, idx: int) -> Optional[dict]:
"""Convert EvolInstruct-Code example to MINDI format."""
instruction = raw.get("instruction", "").strip()
output = raw.get("output", "").strip()
if not instruction or not output:
return None
code_blocks = re.findall(r"```[\w]*\n(.*?)```", output, re.DOTALL)
code = "\n\n".join(code_blocks) if code_blocks else output
language = detect_language(code)
quality = score_quality(code, language)
assistant_content = wrap_mindi_assistant(
code=code,
language=language,
thinking=generate_thinking(instruction, language),
critique=generate_critique(language, code),
suggestions=generate_suggestions(),
)
tokens = count_tokens(assistant_content)
return {
"id": f"mindi_{idx:06d}",
"type": "code_generation",
"source": "evol_code",
"messages": [
{"role": "system", "content": MINDI_SYSTEM_PROMPT},
{"role": "user", "content": instruction},
{"role": "assistant", "content": assistant_content},
],
"metadata": {
"language": language,
"framework": detect_framework(code),
"has_vision": False,
"tokens": tokens,
"quality_score": quality,
},
}
def convert_magicoder(raw: dict, idx: int) -> Optional[dict]:
"""Convert Magicoder example to MINDI format."""
# Magicoder uses problem/solution or instruction/response
instruction = (raw.get("instruction", "") or raw.get("problem", "")).strip()
output = (raw.get("response", "") or raw.get("solution", "")).strip()
if not instruction or not output:
return None
code_blocks = re.findall(r"```[\w]*\n(.*?)```", output, re.DOTALL)
code = "\n\n".join(code_blocks) if code_blocks else output
language = detect_language(code)
quality = score_quality(code, language)
assistant_content = wrap_mindi_assistant(
code=code,
language=language,
thinking=generate_thinking(instruction, language),
critique=generate_critique(language, code),
suggestions=generate_suggestions(),
)
tokens = count_tokens(assistant_content)
return {
"id": f"mindi_{idx:06d}",
"type": "code_generation",
"source": "magicoder",
"messages": [
{"role": "system", "content": MINDI_SYSTEM_PROMPT},
{"role": "user", "content": instruction},
{"role": "assistant", "content": assistant_content},
],
"metadata": {
"language": language,
"framework": detect_framework(code),
"has_vision": False,
"tokens": tokens,
"quality_score": quality,
},
}
# ββ Source registry βββββββββββββββββββββββββββββββββββββββββββββββββββ
SOURCE_CONVERTERS = {
"codealpaca": ("codealpaca.jsonl", convert_codealpaca),
"codefeedback": ("codefeedback.jsonl", convert_codefeedback),
"starcoder_python": ("starcoder_python.jsonl", convert_starcoderdata),
"starcoder_javascript": ("starcoder_javascript.jsonl", convert_starcoderdata),
"starcoder_typescript": ("starcoder_typescript.jsonl", convert_starcoderdata),
"starcoder_css": ("starcoder_css.jsonl", convert_starcoderdata),
"starcoder_html": ("starcoder_html.jsonl", convert_starcoderdata),
"evol_code": ("evol_code.jsonl", convert_evol_code),
"magicoder": ("magicoder.jsonl", convert_magicoder),
"websight": ("websight.jsonl", convert_websight),
"synthetic_nextjs": ("synthetic_nextjs.jsonl", convert_synthetic),
"search_examples": ("search_examples.jsonl", convert_synthetic),
"sandbox_examples": ("sandbox_examples.jsonl", convert_synthetic),
}
OUTPUT_FILE = DATA_PROCESSED / "mindi_all.jsonl"
# ββ Main processing pipeline βββββββββββββββββββββββββββββββββββββββββ
def process_source(
source_name: str,
global_idx: int,
progress: Progress,
dry_run: bool = False,
) -> tuple[int, int, int]:
"""Process one source, return (converted, skipped, global_idx)."""
if source_name not in SOURCE_CONVERTERS:
log.error(f"Unknown source: {source_name}")
return 0, 0, global_idx
filename, converter = SOURCE_CONVERTERS[source_name]
input_path = DATA_RAW / filename
if not input_path.exists():
log.warning(f"βοΈ Skipping {source_name}: {input_path} not found (download first)")
return 0, 0, global_idx
# Count lines for progress
total_lines = sum(1 for _ in open(input_path, encoding="utf-8"))
task = progress.add_task(f"[cyan]{source_name}", total=total_lines)
converted = 0
skipped = 0
output_handle = None
if not dry_run:
# Append mode so we can process sources incrementally
output_handle = open(OUTPUT_FILE, "a", encoding="utf-8")
try:
with open(input_path, "r", encoding="utf-8") as f:
for line_num, line in enumerate(f):
line = line.strip()
if not line:
progress.update(task, advance=1)
continue
try:
raw = json.loads(line)
except json.JSONDecodeError:
skipped += 1
progress.update(task, advance=1)
continue
result = converter(raw, global_idx)
if result is None:
skipped += 1
else:
if not dry_run and output_handle:
output_handle.write(json.dumps(result, ensure_ascii=False) + "\n")
converted += 1
global_idx += 1
progress.update(task, advance=1)
# Flush periodically
if not dry_run and output_handle and converted % 5000 == 0:
output_handle.flush()
finally:
if output_handle:
output_handle.close()
log.info(f"{'[DRY RUN] ' if dry_run else ''}β
{source_name}: {converted:,} converted, {skipped:,} skipped")
return converted, skipped, global_idx
def run_processing(
source: Optional[str] = None,
dry_run: bool = False,
) -> None:
"""Run the full processing pipeline."""
console.print(Panel.fit(
"[bold cyan]MINDI 1.5 Vision-Coder β MINDI Format Converter[/]\n"
"[dim]Day 2 Step 2: Convert raw datasets to MINDI training format[/]",
border_style="cyan",
))
# Determine sources to process
if source:
sources = [source]
else:
sources = list(SOURCE_CONVERTERS.keys())
# Show available files
available_table = Table(title="π Raw Data Files")
available_table.add_column("Source", style="cyan")
available_table.add_column("File")
available_table.add_column("Exists")
available_table.add_column("Size")
for src in sources:
fname, _ = SOURCE_CONVERTERS[src]
fpath = DATA_RAW / fname
exists = fpath.exists()
size = f"{fpath.stat().st_size / (1024*1024):.1f} MB" if exists else "β"
available_table.add_row(src, fname, "β
" if exists else "β", size)
console.print(available_table)
# Count existing examples in output file to resume from correct ID
existing_count = 0
if OUTPUT_FILE.exists():
with open(OUTPUT_FILE, "r", encoding="utf-8") as f:
existing_count = sum(1 for _ in f)
log.info(f"π Existing mindi_all.jsonl has {existing_count:,} examples β appending new data")
# Process each source
total_converted = 0
total_skipped = 0
global_idx = existing_count
with Progress(
SpinnerColumn(),
TextColumn("[progress.description]{task.description}"),
BarColumn(),
MofNCompleteColumn(),
TimeElapsedColumn(),
TimeRemainingColumn(),
console=console,
refresh_per_second=2,
) as progress:
for src in sources:
converted, skipped, global_idx = process_source(
src, global_idx, progress, dry_run=dry_run
)
total_converted += converted
total_skipped += skipped
# Summary
console.print()
summary = Table(title="π Processing Summary")
summary.add_column("Metric", style="cyan")
summary.add_column("Value", justify="right", style="green")
summary.add_row("Previously existing", f"{existing_count:,}")
summary.add_row("Newly converted", f"{total_converted:,}")
summary.add_row("Total skipped", f"{total_skipped:,}")
grand_total = existing_count + total_converted
summary.add_row("[bold]Grand total[/]", f"[bold]{grand_total:,}[/]")
summary.add_row("Global ID range", f"mindi_000000 β mindi_{global_idx - 1:06d}")
if not dry_run and OUTPUT_FILE.exists():
size_mb = OUTPUT_FILE.stat().st_size / (1024 * 1024)
summary.add_row("Output file", str(OUTPUT_FILE.relative_to(PROJECT_ROOT)))
summary.add_row("Output size", f"{size_mb:.1f} MB")
console.print(summary)
if grand_total >= 500_000:
console.print("\n[bold green]π TARGET REACHED: 500K+ examples in MINDI format![/]")
elif grand_total > 0:
remaining = 500_000 - grand_total
console.print(f"\n[yellow]β³ {grand_total:,} total examples ({remaining:,} more needed for 500K target)[/]")
else:
console.print("\n[yellow]β οΈ No examples converted β download raw data first (scripts/download_datasets.py)[/]")
# ββ CLI βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def main() -> None:
parser = argparse.ArgumentParser(description="MINDI Format Converter")
parser.add_argument("--source", type=str, help="Process a specific source only")
parser.add_argument("--dry-run", action="store_true", help="Preview without writing output")
args = parser.parse_args()
run_processing(source=args.source, dry_run=args.dry_run)
if __name__ == "__main__":
main()
|