File size: 15,484 Bytes
e1624f5 | 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 | """
OncoAgent β HuggingFace Dataset Acquisition & Oncological Filtering Pipeline.
Downloads 5 SOTA medical datasets, applies strict oncology keyword filtering,
and exports results in Llama 3.1 chat-template JSONL format.
Hardware Target: CPU (data prep phase β no GPU required).
Rule Compliance: #22 (reproducibility seeds), #24 (.env secrets), #26 (type hints).
"""
import json
import os
import re
import random
import logging
from typing import List, Dict, Optional, Set
from datasets import load_dataset, Dataset
from dotenv import load_dotenv
load_dotenv()
# ββ Reproducibility (Rule #22) ββββββββββββββββββββββββββββββββββββββββββββββ
random.seed(42)
# ββ Logging βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
logging.basicConfig(
level=os.getenv("LOG_LEVEL", "INFO"),
format="%(asctime)s [%(levelname)s] %(message)s",
)
logger = logging.getLogger(__name__)
# ββ Output Directories ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
RAW_DIR = os.path.join("data", "raw")
FILTERED_DIR = os.path.join("data", "filtered")
os.makedirs(RAW_DIR, exist_ok=True)
os.makedirs(FILTERED_DIR, exist_ok=True)
# ββ Oncology Keyword Filter ββββββββββββββββββββββββββββββββββββββββββββββββ
ONCOLOGY_KEYWORDS: Set[str] = {
# General oncology terms
"cancer", "tumor", "tumour", "neoplasm", "malignant", "malignancy",
"carcinoma", "sarcoma", "lymphoma", "leukemia", "leukaemia", "myeloma",
"melanoma", "glioma", "glioblastoma", "mesothelioma", "adenocarcinoma",
"metastasis", "metastatic", "metastases",
# Staging & grading
"staging", "tnm", "ajcc", "figo", "bclc", "ann arbor",
"gleason", "breslow", "clark level",
"stage i", "stage ii", "stage iii", "stage iv",
"grade 1", "grade 2", "grade 3", "grade 4",
# Treatment
"chemotherapy", "radiotherapy", "radiation therapy", "immunotherapy",
"targeted therapy", "hormone therapy", "surgical resection",
"mastectomy", "lobectomy", "colectomy", "prostatectomy",
"folfox", "folfiri", "cisplatin", "carboplatin", "pembrolizumab",
"nivolumab", "atezolizumab", "bevacizumab", "trastuzumab",
# Diagnostics
"biopsy", "histopathology", "cytology", "pet-ct", "pet scan",
"mammography", "colonoscopy", "endoscopy",
"bi-rads", "pi-rads", "li-rads", "fleischner",
"ca 19-9", "ca-125", "cea", "afp", "psa",
# Molecular markers
"brca", "her2", "egfr", "alk", "kras", "braf", "msi",
"pd-l1", "microsatellite", "tp53", "rb1",
# Clinical guidelines
"nccn", "esmo", "asco", "tumor board",
# Specific cancers
"breast cancer", "lung cancer", "colon cancer", "colorectal",
"prostate cancer", "pancreatic cancer", "liver cancer",
"hepatocellular", "esophageal", "gastric cancer",
"ovarian cancer", "cervical cancer", "thyroid cancer",
"bladder cancer", "renal cell", "testicular cancer",
"head and neck cancer", "nsclc", "sclc",
}
# Pre-compile a single regex pattern for fast matching
_ONCO_PATTERN = re.compile(
"|".join(re.escape(kw) for kw in ONCOLOGY_KEYWORDS),
re.IGNORECASE,
)
def is_oncology_relevant(text: str, min_matches: int = 1) -> bool:
"""Check if text contains oncology-relevant keywords.
Args:
text: The input text to check.
min_matches: Minimum number of keyword matches required.
Returns:
True if the text is oncology-relevant.
"""
if not text:
return False
matches = _ONCO_PATTERN.findall(text)
return len(matches) >= min_matches
# ββ Llama 3.1 Chat Templates βββββββββββββββββββββββββββββββββββββββββββββββ
def format_llama3_chat(
system_msg: str,
user_msg: str,
assistant_msg: str,
) -> str:
"""Format a conversation into strict Llama 3.1 chat template.
Args:
system_msg: The system prompt defining the assistant's role.
user_msg: The user's clinical input.
assistant_msg: The assistant's expert response.
Returns:
Formatted string in Llama 3.1 chat template.
"""
return (
f"<|begin_of_text|><|start_header_id|>system<|end_header_id|>\n\n"
f"{system_msg}<|eot_id|>"
f"<|start_header_id|>user<|end_header_id|>\n\n"
f"{user_msg}<|eot_id|>"
f"<|start_header_id|>assistant<|end_header_id|>\n\n"
f"{assistant_msg}<|eot_id|>"
)
# ββ Dataset Processors βββββββββββββββββββββββββββββββββββββββββββββββββββββ
SYSTEM_PROMPT_ONCOLOGIST = (
"You are an expert clinical oncologist specializing in cancer triage. "
"Analyze the patient's clinical presentation using temporal-causal "
"reasoning (OncoCoT). Provide: (1) key findings, (2) step-by-step "
"diagnostic reasoning with staging, and (3) evidence-based recommendations "
"citing NCCN/ESMO guidelines where applicable."
)
def process_pmc_patients(max_samples: Optional[int] = None) -> List[Dict[str, str]]:
"""Download and filter PMC-Patients for oncology cases.
Args:
max_samples: Optional limit on number of samples to process.
Returns:
List of formatted JSONL entries.
"""
logger.info("π₯ Downloading PMC-Patients (zhengyun21/PMC-Patients) in streaming mode...")
try:
dataset = load_dataset("zhengyun21/PMC-Patients", split="train", streaming=True)
except Exception as e:
logger.error(f"Failed to download PMC-Patients: {e}")
return []
results: List[Dict[str, str]] = []
filtered = 0
scanned = 0
for item in dataset:
scanned += 1
patient_text = item.get("patient", "")
if not is_oncology_relevant(patient_text, min_matches=2):
continue
formatted = format_llama3_chat(
system_msg=SYSTEM_PROMPT_ONCOLOGIST,
user_msg=f"Patient Summary:\n{patient_text}",
assistant_msg=(
f"Patient UID: {item.get('patient_uid', 'N/A')}.\n\n"
f"Clinical Analysis: This patient presents with findings "
f"requiring oncological evaluation. A systematic review of "
f"the clinical presentation, imaging, and laboratory findings "
f"is necessary for proper staging and treatment planning."
),
)
results.append({"text": formatted, "source": "pmc_patients"})
filtered += 1
if max_samples and filtered >= max_samples:
break
logger.info(f"β
PMC-Patients: {filtered}/{scanned} oncology-relevant cases extracted.")
return results
def process_asclepius_notes(max_samples: Optional[int] = None) -> List[Dict[str, str]]:
"""Download and filter Asclepius Synthetic Clinical Notes.
Args:
max_samples: Optional limit on number of samples.
Returns:
List of formatted JSONL entries.
"""
logger.info("π₯ Downloading Asclepius Clinical Notes (starmpcc/Asclepius-Synthetic-Clinical-Notes)...")
try:
dataset = load_dataset(
"starmpcc/Asclepius-Synthetic-Clinical-Notes", split="train"
)
except Exception as e:
logger.error(f"Failed to download Asclepius: {e}")
return []
results: List[Dict[str, str]] = []
total = len(dataset)
filtered = 0
for item in dataset:
# Asclepius has 'note' or 'text' field depending on version
note_text = item.get("note", item.get("text", ""))
if not is_oncology_relevant(note_text, min_matches=2):
continue
formatted = format_llama3_chat(
system_msg=SYSTEM_PROMPT_ONCOLOGIST,
user_msg=f"Clinical Note:\n{note_text}",
assistant_msg=(
"Oncological Assessment: The clinical note describes findings "
"consistent with a potential oncological process. Further "
"evaluation with appropriate imaging, biopsy, and molecular "
"profiling is recommended for definitive diagnosis and staging."
),
)
results.append({"text": formatted, "source": "asclepius"})
filtered += 1
if max_samples and filtered >= max_samples:
break
logger.info(f"β
Asclepius: {filtered}/{total} oncology-relevant notes extracted.")
return results
def process_clinical_trial_cancer() -> List[Dict[str, str]]:
"""Download Clinical Trial Cancer v4 dataset (already oncology-focused).
Returns:
List of formatted JSONL entries.
"""
logger.info("π₯ Downloading Clinical Trial Cancer v4 (ravistech/clinical-trial-llm-cancer-v4)...")
try:
dataset = load_dataset(
"ravistech/clinical-trial-llm-cancer-v4", split="train"
)
except Exception as e:
logger.error(f"Failed to download Clinical Trial Cancer: {e}")
return []
results: List[Dict[str, str]] = []
for item in dataset:
# Build context from available fields
context_parts = []
for field in ["input", "instruction", "context", "text"]:
val = item.get(field, "")
if val:
context_parts.append(val)
context = "\n".join(context_parts)
output = item.get("output", item.get("response", ""))
if not context or not output:
continue
formatted = format_llama3_chat(
system_msg=SYSTEM_PROMPT_ONCOLOGIST,
user_msg=context,
assistant_msg=output,
)
results.append({"text": formatted, "source": "clinical_trial_cancer"})
logger.info(f"β
Clinical Trial Cancer: {len(results)} entries processed.")
return results
def process_medical_o1_reasoning(max_samples: Optional[int] = None) -> List[Dict[str, str]]:
"""Download and filter Medical O1 Reasoning SFT dataset.
Args:
max_samples: Optional limit on number of samples.
Returns:
List of formatted JSONL entries.
"""
logger.info("π₯ Downloading Medical O1 Reasoning (FreedomIntelligence/medical-o1-reasoning-SFT)...")
try:
dataset = load_dataset(
"FreedomIntelligence/medical-o1-reasoning-SFT",
split="train",
)
except Exception as e:
logger.error(f"Failed to download Medical O1: {e}")
return []
results: List[Dict[str, str]] = []
total = len(dataset)
filtered = 0
for item in dataset:
# This dataset typically has 'question'/'input' and 'response'/'output'
question = item.get("question", item.get("input", item.get("instruction", "")))
response = item.get("response", item.get("output", ""))
combined_text = f"{question} {response}"
if not is_oncology_relevant(combined_text, min_matches=2):
continue
formatted = format_llama3_chat(
system_msg=(
"You are an expert clinical oncologist. Use chain-of-thought "
"reasoning to analyze the following medical scenario step by step. "
"Consider differential diagnoses, staging criteria, and "
"evidence-based treatment guidelines."
),
user_msg=question,
assistant_msg=response,
)
results.append({"text": formatted, "source": "medical_o1_reasoning"})
filtered += 1
if max_samples and filtered >= max_samples:
break
logger.info(f"β
Medical O1 Reasoning: {filtered}/{total} oncology-relevant entries extracted.")
return results
def process_pubmed_qa() -> List[Dict[str, str]]:
"""Download PubMedQA labeled split and filter for oncology.
Returns:
List of formatted JSONL entries.
"""
logger.info("π₯ Downloading PubMedQA (pubmed_qa, pqa_labeled)...")
try:
dataset = load_dataset("pubmed_qa", "pqa_labeled", split="train")
except Exception as e:
logger.error(f"Failed to download PubMedQA: {e}")
return []
results: List[Dict[str, str]] = []
total = len(dataset)
filtered = 0
for item in dataset:
question = item.get("question", "")
context_data = item.get("context", {})
contexts_list = context_data.get("contexts", [])
context_str = " ".join(contexts_list) if isinstance(contexts_list, list) else str(contexts_list)
long_answer = item.get("long_answer", "")
final_decision = item.get("final_decision", "")
combined = f"{question} {context_str} {long_answer}"
if not is_oncology_relevant(combined, min_matches=1):
continue
formatted = format_llama3_chat(
system_msg=SYSTEM_PROMPT_ONCOLOGIST,
user_msg=f"Context:\n{context_str}\n\nQuestion: {question}",
assistant_msg=f"{long_answer}\n\nConclusion: {final_decision}",
)
results.append({"text": formatted, "source": "pubmed_qa"})
filtered += 1
logger.info(f"β
PubMedQA: {filtered}/{total} oncology-relevant QA pairs extracted.")
return results
# ββ Main Pipeline βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def run_pipeline() -> str:
"""Execute the full dataset acquisition and filtering pipeline.
Returns:
Path to the final filtered JSONL file.
"""
logger.info("π Starting OncoAgent Data Acquisition Pipeline...")
logger.info("=" * 60)
all_results: List[Dict[str, str]] = []
# 1. PMC-Patients (filtered)
all_results.extend(process_pmc_patients())
# 2. Asclepius Clinical Notes (filtered)
all_results.extend(process_asclepius_notes())
# 3. Clinical Trial Cancer (already oncology)
all_results.extend(process_clinical_trial_cancer())
# 4. Medical O1 Reasoning (filtered)
all_results.extend(process_medical_o1_reasoning())
# 5. PubMedQA (filtered)
all_results.extend(process_pubmed_qa())
# Shuffle for training diversity
random.shuffle(all_results)
# Write final filtered output
output_path = os.path.join(FILTERED_DIR, "onco_real_filtered.jsonl")
with open(output_path, "w", encoding="utf-8") as f:
for entry in all_results:
f.write(json.dumps(entry, ensure_ascii=False) + "\n")
# Print statistics
logger.info("=" * 60)
logger.info(f"π PIPELINE COMPLETE β Total oncology samples: {len(all_results)}")
source_counts: Dict[str, int] = {}
for entry in all_results:
src = entry.get("source", "unknown")
source_counts[src] = source_counts.get(src, 0) + 1
for src, count in sorted(source_counts.items(), key=lambda x: -x[1]):
logger.info(f" βββ {src}: {count:,} samples")
logger.info(f" βββ Output: {output_path}")
logger.info("=" * 60)
return output_path
if __name__ == "__main__":
run_pipeline()
|