drdeveloper88's picture
Upload WorldDisasterLM-8B source code: FastAPI backend, training pipeline, 11-language support
495526b
Raw
History Blame Contribute Delete
157 Bytes
from pathlib import Path
def ensure_dir(path: str | Path) -> Path:
output = Path(path)
output.mkdir(parents=True, exist_ok=True)
return output