Spaces:
Sleeping
Sleeping
File size: 12,881 Bytes
7ea279c 0238379 7ea279c 844ea95 7ea279c 844ea95 7ea279c 844ea95 7ea279c b85f76a 7ea279c b85f76a 7ea279c b85f76a 7ea279c 1815d05 7ea279c b85f76a 7ea279c b85f76a 7ea279c b85f76a 7ea279c b85f76a 7ea279c | 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 | """ML Data Analysis Studio β Gradio app for Hugging Face Spaces.
Chat about ML models, upload data in any common format, preprocess it,
train regression/classification models, inspect the generated code,
and download PDF/HTML reports plus the cleaned dataset.
"""
import os
import traceback
import gradio as gr
import pandas as pd
import chat_engine
import ml_models
from data_processor import (
CLEANED_PATH,
generate_preprocessing_code,
load_data,
preprocess_data,
profile_data,
profile_text,
)
from report_generator import generate_html_report, generate_pdf_report
# ---------------------------------------------------------------- state ----
STATE = {
"raw_df": None,
"clean_df": None,
"file_name": None,
"profile": None,
"steps": [],
"result": None,
}
# ----------------------------------------------------------------- chat ----
def chat_fn(message, history):
if not message.strip():
return ""
return chat_engine.respond(message, history, STATE["file_name"])
# --------------------------------------------------------------- upload ----
def upload_fn(file):
if file is None:
return "Upload a file to begin.", None, gr.update(choices=[]), ""
file_path = file if isinstance(file, str) else file.name
try:
df = load_data(file_path)
except Exception as e:
return f"β Could not read file: {e}", None, gr.update(choices=[]), ""
STATE["raw_df"] = df
STATE["file_name"] = os.path.basename(file_path)
STATE["profile"] = profile_data(df)
STATE["clean_df"] = None
STATE["result"] = None
msg = (
f"β
Loaded **{STATE['file_name']}**. Do you want me to analyse this data? "
f"Review the profile below, adjust the cleaning options, and click "
f"**Run Preprocessing**.\n\n" + profile_text(STATE["profile"])
)
cols = df.columns.tolist()
return msg, df.head(20), gr.update(choices=cols, value=cols[-1]), ""
# ----------------------------------------------------------- preprocess ----
def preprocess_fn(missing_strategy, drop_dups, encode_cats, scaling, outliers, target):
if STATE["raw_df"] is None:
return "β οΈ Upload a dataset first.", None, "", gr.update(choices=[])
try:
clean_df, steps = preprocess_data(
STATE["raw_df"],
missing_strategy=missing_strategy,
drop_duplicates=drop_dups,
encode_categoricals=encode_cats,
scaling=scaling,
clip_outliers=outliers,
target_column=target or None,
)
except Exception as e:
return f"β Preprocessing failed: {e}", None, "", gr.update(choices=[])
STATE["clean_df"] = clean_df
STATE["steps"] = steps
code = generate_preprocessing_code(
missing_strategy, drop_dups, encode_cats, scaling, outliers, target or None
)
msg = "### β
Preprocessing complete\n\n" + "\n".join(f"- {s}" for s in steps)
cols = clean_df.columns.tolist()
default_target = target if target in cols else (cols[-1] if cols else None)
return msg, clean_df.head(20), code, gr.update(choices=cols, value=default_target)
# ---------------------------------------------------------------- train ----
def suggest_task_fn(target):
df = STATE["clean_df"] if STATE["clean_df"] is not None else STATE["raw_df"]
if df is None or not target or target not in df.columns:
return gr.update()
task = ml_models.suggest_task(df, target)
return gr.update(
value=task,
info=f"Suggested: {task} (based on the '{target}' column)",
)
def task_models_fn(task):
models = (
list(ml_models.CLASSIFICATION_MODELS)
if task == "Classification"
else list(ml_models.REGRESSION_MODELS)
)
return gr.update(choices=models, value=models[0])
def train_fn(target, task, model_name, test_size):
empty = (None,) * 4
if STATE["clean_df"] is None:
if STATE["raw_df"] is None:
return ("β οΈ Upload a dataset first (Data & Preprocessing tab).", *empty)
return ("β οΈ Run preprocessing first (Data & Preprocessing tab).", *empty)
if not target:
return ("β οΈ Select a target column.", *empty)
valid = (
ml_models.CLASSIFICATION_MODELS
if task == "Classification"
else ml_models.REGRESSION_MODELS
)
if model_name not in valid:
model_name = list(valid)[0]
try:
result = ml_models.train_model(
STATE["clean_df"], target, model_name, task, test_size
)
except Exception as e:
traceback.print_exc()
return (f"β Training failed: {e}", *empty)
STATE["result"] = result
metrics_md = "\n".join(f"| {k} | {v} |" for k, v in result["metrics"].items())
msg = (
f"### β
{model_name} trained\n\n"
f"**Task:** {task} | **Target:** `{target}` | "
f"**Train/test:** {result['n_train']:,}/{result['n_test']:,} | "
f"**Features used:** {len(result['features'])}\n\n"
f"| Metric | Value |\n|---|---|\n{metrics_md}"
)
code = ml_models.generate_model_code(model_name, task, target, test_size)
return (
msg,
result["plot_path"],
result["importance_path"],
code,
pd.DataFrame([result["metrics"]]),
)
# ------------------------------------------------------------- download ----
def download_fn(formats):
if STATE["result"] is None:
return "β οΈ Train a model first β the report includes its results.", []
files = []
try:
if "PDF report" in formats:
files.append(generate_pdf_report(STATE["profile"], STATE["steps"], STATE["result"]))
if "HTML report" in formats:
files.append(generate_html_report(STATE["profile"], STATE["steps"], STATE["result"]))
if "Cleaned data (CSV)" in formats and os.path.exists(CLEANED_PATH):
files.append(CLEANED_PATH)
except Exception as e:
traceback.print_exc()
return f"β Report generation failed: {e}", []
if not files:
return "β οΈ Select at least one format.", []
return f"β
Generated {len(files)} file(s) β download below.", files
# ------------------------------------------------------------------ UI ----
CSS = """
.gradio-container { max-width: 1100px !important; }
footer { display: none !important; }
"""
with gr.Blocks(title="ML Data Analysis Studio", css=CSS, theme=gr.themes.Soft()) as demo:
gr.Markdown(
"# π€ ML Data Analysis Studio\n"
"Chat about machine learning, upload your data, clean it, train models, "
"inspect the code, and download reports."
)
with gr.Tabs():
# ---------------------------------------------------- Tab 1: Chat
with gr.Tab("π¬ ML Assistant"):
gr.ChatInterface(
fn=chat_fn,
chatbot=gr.Chatbot(
value=[{"role": "assistant", "content": chat_engine.WELCOME}],
height=420,
type="messages",
),
type="messages",
cache_examples=False,
examples=[
"What do you want to analyse today?",
"Which model should I use?",
"What is a random forest?",
"Explain overfitting",
"What do precision and recall mean?",
],
)
# -------------------------------------- Tab 2: Data & Preprocessing
with gr.Tab("π Data & Preprocessing"):
gr.Markdown("### Step 1 β Upload your dataset (CSV, TSV, Excel, JSON, or Parquet)")
file_input = gr.File(
label="Upload data",
file_types=[".csv", ".tsv", ".xlsx", ".xls", ".json", ".parquet", ".txt"],
)
upload_status = gr.Markdown("Upload a file to begin.")
data_preview = gr.Dataframe(label="Data preview (first 20 rows)")
gr.Markdown("### Step 2 β Preprocessing & cleaning options")
with gr.Row():
missing_dd = gr.Dropdown(
[
"Impute (mean/mode)",
"Impute (median/mode)",
"Drop rows with missing values",
],
value="Impute (mean/mode)",
label="Missing values",
)
scale_dd = gr.Dropdown(
["None", "Standard (z-score)", "Min-Max (0-1)"],
value="None",
label="Scale numeric features",
)
target_dd_pre = gr.Dropdown(
[], label="Target column (kept out of encoding/scaling)"
)
with gr.Row():
dups_cb = gr.Checkbox(True, label="Remove duplicate rows")
encode_cb = gr.Checkbox(True, label="One-hot encode categoricals")
outliers_cb = gr.Checkbox(False, label="Clip outliers (1.5ΓIQR)")
gr.Markdown(
"*Always applied: trims whitespace, converts placeholder values "
"('N/A', '?', '-') to missing, parses numeric-looking text "
"('$1,234', '45%'), and drops empty or constant columns.*"
)
preprocess_btn = gr.Button("π§Ή Run Preprocessing", variant="primary")
preprocess_status = gr.Markdown()
clean_preview = gr.Dataframe(label="Cleaned data preview")
with gr.Accordion("π¨βπ» View preprocessing code", open=False):
preprocess_code = gr.Code(language="python")
# ------------------------------------------- Tab 3: Model Training
with gr.Tab("π§ Model Training"):
gr.Markdown("### Step 3 β Configure and train a model")
with gr.Row():
target_dd = gr.Dropdown([], label="Target column (what to predict)")
task_radio = gr.Radio(
["Regression", "Classification"], value="Regression", label="Task"
)
with gr.Row():
model_dd = gr.Dropdown(
list(ml_models.REGRESSION_MODELS),
value="Linear Regression",
label="Model",
)
test_slider = gr.Slider(0.1, 0.4, 0.2, step=0.05, label="Test set fraction")
train_btn = gr.Button("π Train Model", variant="primary")
train_status = gr.Markdown()
with gr.Row():
result_plot = gr.Image(label="Result plot", type="filepath")
importance_plot = gr.Image(label="Feature importance", type="filepath")
metrics_df = gr.Dataframe(label="Metrics", visible=True)
with gr.Accordion("π¨βπ» View model training code", open=False):
model_code = gr.Code(language="python")
# ----------------------------------------------- Tab 4: Downloads
with gr.Tab("π₯ Reports & Downloads"):
gr.Markdown(
"### Step 4 β Export your analysis\n"
"Generates a report with the dataset profile, preprocessing steps, "
"model results, and charts."
)
formats_cg = gr.CheckboxGroup(
["PDF report", "HTML report", "Cleaned data (CSV)"],
value=["PDF report", "HTML report", "Cleaned data (CSV)"],
label="Formats",
)
report_btn = gr.Button("π Generate Downloads", variant="primary")
report_status = gr.Markdown()
report_files = gr.Files(label="Your downloads")
# ------------------------------------------------------------ wiring ----
file_input.change(
upload_fn,
inputs=file_input,
outputs=[upload_status, data_preview, target_dd_pre, preprocess_status],
).then(lambda t: gr.update(choices=STATE["raw_df"].columns.tolist() if STATE["raw_df"] is not None else [], value=t),
inputs=target_dd_pre, outputs=target_dd)
preprocess_btn.click(
preprocess_fn,
inputs=[missing_dd, dups_cb, encode_cb, scale_dd, outliers_cb, target_dd_pre],
outputs=[preprocess_status, clean_preview, preprocess_code, target_dd],
)
target_dd.change(suggest_task_fn, inputs=target_dd, outputs=task_radio)
task_radio.change(task_models_fn, inputs=task_radio, outputs=model_dd)
train_btn.click(
train_fn,
inputs=[target_dd, task_radio, model_dd, test_slider],
outputs=[train_status, result_plot, importance_plot, model_code, metrics_df],
)
report_btn.click(download_fn, inputs=formats_cg, outputs=[report_status, report_files])
if __name__ == "__main__":
demo.launch()
|