Spaces:
Sleeping
Sleeping
File size: 14,859 Bytes
900df0b | 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 | """
مولد بيانات التدريب الناعم (Fine-Tuning Dataset Generator)
=============================================================
تحويل النصوص المصحّحة والمعتمدة إلى تنسيقات بيانات التدريب.
يدعم التنسيقات:
- JSONL: ل تدريب نماذج مثل GPT, Llama, Mistral
- JSON: تنسيق HuggingFace datasets
- CSV: للتحليل الإحصائي
الاستخدام:
from modules.core.dataset_generator import DatasetGenerator
gen = DatasetGenerator(output_dir="training_data")
gen.add_entry(
instruction="صحح المصطلحات الطبية في النص التالي:",
input_text="المريض يعاني من الم في الرکبة",
output_text="المريض يعاني من ألم في الركبة",
specialty="orthopedic",
quality="verified"
)
gen.export("jsonl")
"""
import json
import csv
import logging
import os
from datetime import datetime
from typing import Optional, Dict, Any, List
from pathlib import Path
logger = logging.getLogger(__name__)
class DatasetGenerator:
"""
مولد بيانات التدريب الناعم — يحوّل الأرشيف إلى بيانات جاهزة للتدريب.
كل إدخال يحتوي على:
- instruction: التعليمات (مثلاً: "صحح المصطلحات الطبية")
- input: النص الخام أو الأصلي
- output: النص المصحح أو المعتمد
- specialty: التخصص الطبي (اختياري)
- quality: جودة البيانات (verified / auto / draft)
- metadata: بيانات وصفية إضافية
"""
DEFAULT_INSTRUCTION = "صحح الأخطاء والمصطلحات الطبية في النص التالي المتعلق بالجراحة:"
def __init__(
self,
output_dir: str = "training_data",
filename: str = "medical_training",
specialty: str = "general",
max_entries: int = 100000,
):
"""
تهيئة مولد بيانات التدريب.
Args:
output_dir: مجلد المخرجات
filename: اسم الملف الأساسي
specialty: التخصص الافتراضي
max_entries: الحد الأقصى للإدخالات
"""
self.output_dir = output_dir
self.filename = filename
self.default_specialty = specialty
self.max_entries = max_entries
# قاعدة البيانات في الذاكرة
self._entries: List[Dict[str, Any]] = []
self._stats = {
"total_entries": 0,
"by_specialty": {},
"by_quality": {},
"by_date": {},
}
# إنشاء المجلد
os.makedirs(output_dir, exist_ok=True)
logger.info("تم تهيئة مولد بيانات التدريب: %s", output_dir)
def add_entry(
self,
instruction: Optional[str] = None,
input_text: str = "",
output_text: str = "",
specialty: Optional[str] = None,
quality: str = "auto",
source_file: str = "",
metadata: Optional[Dict[str, Any]] = None,
) -> bool:
"""
إضافة إدخال جديد إلى قاعدة بيانات التدريب.
Args:
instruction: التعليمات (الافتراضي: التصحيح الطبي)
input_text: النص الأصلي/الخام
output_text: النص المصحح/المعتمد
specialty: التخصص الطبي
quality: جودة البيانات (verified/auto/draft)
source_file: الملف المصدر
metadata: بيانات وصفية إضافية
Returns:
True إذا تمت الإضافة بنجاح
"""
if len(self._entries) >= self.max_entries:
logger.warning("تم بلوغ الحد الأقصى للإدخالات: %d", self.max_entries)
return False
entry = {
"instruction": instruction or self.DEFAULT_INSTRUCTION,
"input": input_text,
"output": output_text,
"specialty": specialty or self.default_specialty,
"quality": quality,
"source_file": source_file,
"timestamp": datetime.now().isoformat(),
"metadata": metadata or {},
}
# التحقق من صحة الإدخال
if not output_text.strip():
logger.warning("إدخال فارغ — تم التخطي")
return False
self._entries.append(entry)
# تحديث الإحصائيات
self._stats["total_entries"] = len(self._entries)
spec = entry["specialty"]
self._stats["by_specialty"][spec] = self._stats["by_specialty"].get(spec, 0) + 1
qual = entry["quality"]
self._stats["by_quality"][qual] = self._stats["by_quality"].get(qual, 0) + 1
today = datetime.now().strftime("%Y-%m-%d")
self._stats["by_date"][today] = self._stats["by_date"].get(today, 0) + 1
return True
def add_ocr_pair(
self,
raw_text: str,
corrected_text: str,
specialty: str = "general",
ocr_engine: str = "unknown",
confidence: float = 0.0,
source_file: str = "",
) -> bool:
"""
إضافة زوج OCR (نص خام + نص مصحح) مباشرة.
Args:
raw_text: النص المستخرج من OCR
corrected_text: النص بعد التصحيح
specialty: التخصص الطبي
ocr_engine: محرك OCR المستخدم
confidence: نسبة الثقة
source_file: الملف المصدر
Returns:
True إذا تمت الإضافة بنجاح
"""
metadata = {
"ocr_engine": ocr_engine,
"ocr_confidence": confidence,
"type": "ocr_correction",
}
quality = "verified" if confidence > 0.85 else "auto"
return self.add_entry(
instruction=self.DEFAULT_INSTRUCTION,
input_text=raw_text,
output_text=corrected_text,
specialty=specialty,
quality=quality,
source_file=source_file,
metadata=metadata,
)
def add_classification_pair(
self,
text: str,
category: str,
subcategory: str = "",
source_file: str = "",
) -> bool:
"""
إضافة زوج تصنيف (نص + تصنيف صحيح).
Args:
text: النص
category: التصنيف الصحيح
subcategory: التصنيف الفرعي
source_file: الملف المصدر
Returns:
True إذا تمت الإضافة بنجاح
"""
classification_text = category
if subcategory:
classification_text = f"{category} > {subcategory}"
metadata = {
"type": "classification",
"category": category,
"subcategory": subcategory,
}
return self.add_entry(
instruction="صنف النص الطبي التالي:",
input_text=text,
output_text=classification_text,
specialty=category,
quality="auto",
source_file=source_file,
metadata=metadata,
)
def export(
self,
format_type: str = "jsonl",
filename: Optional[str] = None,
split_ratios: Optional[Dict[str, float]] = None,
) -> Dict[str, str]:
"""
تصدير بيانات التدريب إلى ملف.
Args:
format_type: تنسيق التصدير ('jsonl', 'json', 'csv')
filename: اسم الملف (الافتراضي: الاسم الأساسي)
split_ratios: نسب التقسيم (مثل {'train': 0.8, 'val': 0.1, 'test': 0.1})
Returns:
قاموس {اسم_المجموعة: مسار_الملف}
"""
if not self._entries:
logger.warning("لا توجد بيانات للتصدير")
return {}
filename = filename or self.filename
output_files = {}
if split_ratios:
# تقسيم البيانات
splits = self._split_data(split_ratios)
for split_name, entries in splits.items():
ext = self._get_extension(format_type)
out_name = f"{filename}_{split_name}{ext}"
out_path = os.path.join(self.output_dir, out_name)
self._write_file(entries, out_path, format_type)
output_files[split_name] = out_path
logger.info(
"تم تصدير %d إدخال (%s) إلى %s",
len(entries), split_name, out_path
)
else:
# تصدير كامل
ext = self._get_extension(format_type)
out_name = f"{filename}{ext}"
out_path = os.path.join(self.output_dir, out_name)
self._write_file(self._entries, out_path, format_type)
output_files["full"] = out_path
logger.info("تم تصدير %d إدخال إلى %s", len(self._entries), out_path)
# حفظ الإحصائيات
stats_path = os.path.join(self.output_dir, f"{filename}_stats.json")
with open(stats_path, "w", encoding="utf-8") as f:
json.dump(self._stats, f, ensure_ascii=False, indent=2)
return output_files
def _write_file(self, entries: List[Dict], filepath: str, format_type: str):
"""كتابة البيانات إلى ملف بالتنسيق المحدد."""
if format_type == "jsonl":
with open(filepath, "w", encoding="utf-8") as f:
for entry in entries:
# إزالة الحقول الوصفية من بيانات التدريب
train_entry = {
"instruction": entry["instruction"],
"input": entry["input"],
"output": entry["output"],
}
if entry.get("specialty"):
train_entry["specialty"] = entry["specialty"]
f.write(json.dumps(train_entry, ensure_ascii=False) + "\n")
elif format_type == "json":
data = []
for entry in entries:
data.append({
"instruction": entry["instruction"],
"input": entry["input"],
"output": entry["output"],
"specialty": entry.get("specialty", ""),
})
with open(filepath, "w", encoding="utf-8") as f:
json.dump(data, f, ensure_ascii=False, indent=2)
elif format_type == "csv":
with open(filepath, "w", encoding="utf-8", newline="") as f:
writer = csv.writer(f)
writer.writerow(["instruction", "input", "output", "specialty", "quality"])
for entry in entries:
writer.writerow([
entry["instruction"],
entry["input"],
entry["output"],
entry.get("specialty", ""),
entry.get("quality", ""),
])
def _split_data(self, ratios: Dict[str, float]) -> Dict[str, List[Dict]]:
"""تقسيم البيانات حسب النسب المحددة."""
total = len(self._entries)
splits = {}
used = 0
# ترتيب حسب الجودة (verified أولاً)
quality_order = {"verified": 0, "auto": 1, "draft": 2}
sorted_entries = sorted(
self._entries,
key=lambda x: quality_order.get(x.get("quality", "draft"), 3)
)
for split_name, ratio in ratios.items():
count = int(total * ratio)
# تعديل آخر مجموعة لتشمل الباقي
if split_name == list(ratios.keys())[-1]:
count = total - used
splits[split_name] = sorted_entries[used:used + count]
used += count
return splits
@staticmethod
def _get_extension(format_type: str) -> str:
"""الحصول على امتداد الملف حسب التنسيق."""
extensions = {"jsonl": ".jsonl", "json": ".json", "csv": ".csv"}
return extensions.get(format_type, ".jsonl")
def get_statistics(self) -> Dict[str, Any]:
"""الحصول على إحصائيات بيانات التدريب."""
stats = dict(self._stats)
stats["output_dir"] = self.output_dir
stats["filename"] = self.filename
stats["max_entries"] = self.max_entries
stats["current_entries"] = len(self._entries)
stats["remaining"] = self.max_entries - len(self._entries)
return stats
def load_existing(self, filepath: str) -> int:
"""
تحميل بيانات من ملف JSONL موجود.
Args:
filepath: مسار ملف JSONL
Returns:
عدد الإدخالات المحملة
"""
if not os.path.exists(filepath):
logger.warning("الملف غير موجود: %s", filepath)
return 0
count = 0
try:
with open(filepath, "r", encoding="utf-8") as f:
for line in f:
line = line.strip()
if not line:
continue
try:
entry = json.loads(line)
self._entries.append(entry)
count += 1
except json.JSONDecodeError:
continue
self._stats["total_entries"] = len(self._entries)
logger.info("تم تحميل %d إدخال من %s", count, filepath)
except Exception as e:
logger.error("خطأ في تحميل الملف: %s", e)
return count
def clear(self):
"""مسح جميع الإدخالات."""
self._entries.clear()
self._stats = {
"total_entries": 0,
"by_specialty": {},
"by_quality": {},
"by_date": {},
}
logger.info("تم مسح جميع بيانات التدريب")
def __len__(self) -> int:
return len(self._entries)
def __repr__(self) -> str:
return (
f"DatasetGenerator(entries={len(self._entries)}, "
f"specialty='{self.default_specialty}')"
)
|