Clean artifacts and update example pipeline

This commit is contained in:
2026-01-22 16:32:51 +08:00
parent c0639386be
commit c3f750cd9d
20 changed files with 651 additions and 30826 deletions

View File

@@ -8,9 +8,12 @@ Everything else numeric -> continuous. Non-numeric -> discrete.
import csv
import gzip
import os
from pathlib import Path
DATA_PATH = "/home/anay/Dev/diffusion/dataset/hai/hai-21.03/train1.csv.gz"
OUT_DIR = "/home/anay/Dev/diffusion/mask-ddpm/example/results"
BASE_DIR = Path(__file__).resolve().parent
REPO_DIR = BASE_DIR.parent.parent
DATA_PATH = str(REPO_DIR / "dataset" / "hai" / "hai-21.03" / "train1.csv.gz")
OUT_DIR = str(BASE_DIR / "results")
MAX_ROWS = 5000