Correciones para reentrenamiento

This commit is contained in:
2025-05-04 20:58:43 +02:00
parent 56991c9f26
commit 721992d6f3
33 changed files with 740951 additions and 240889 deletions

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,84 @@
{
"cells": [
{
"cell_type": "code",
"id": "initial_id",
"metadata": {
"collapsed": true,
"ExecuteTime": {
"end_time": "2025-04-24T11:03:02.472175Z",
"start_time": "2025-04-24T11:02:41.583940Z"
}
},
"source": [
"import os\n",
"from ydata_profiling import ProfileReport\n",
"import pandas as pd\n",
"\n",
"# Cargar el archivo CSV\n",
"file_path = 'samples_con_predicciones_20250421_183556.csv'\n",
"df = pd.read_csv(file_path)\n",
"\n",
"# Mostrar las primeras filas para entender la estructura\n",
"df.head()\n",
"# Excluir la columna 'i' si no es numérica\n",
"df_numeric = df.drop(columns=['i'], errors='ignore')\n",
"\n",
"# Generate analysis info into html folder\n",
"profile = ProfileReport(df_numeric, title=\"NONE Data Profiling Report\", explorative=True)\n",
"report = ProfileReport(\n",
" df_numeric,\n",
" title=\"NONE Data Profiling Report\",\n",
" html={\"style\": {\"full_width\": True}},\n",
" missing_diagrams={\n",
" \"heatmap\": False,\n",
" \"dendrogram\": False,\n",
" \"Count\": False,\n",
" \"bar\": False,\n",
" \"matrix\": False,\n",
" \"sparkline\": False,\n",
" \"table\": False,\n",
" },\n",
" )\n",
"report.to_file(os.path.join(\"html\", \"NONE-Data-Profiling-Report.html\"))\n",
"\n"
],
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"Summarize dataset: 33%|███▎ | 7/21 [00:00<00:00, 63.80it/s, Describe variable: -43919.77]\n",
"100%|██████████| 16/16 [00:00<00:00, 1018.14it/s]\n",
"Summarize dataset: 100%|██████████| 279/279 [00:14<00:00, 19.02it/s, Completed] \n",
"Generate report structure: 100%|██████████| 1/1 [00:02<00:00, 2.39s/it]\n",
"Render HTML: 100%|██████████| 1/1 [00:03<00:00, 3.09s/it]\n",
"Export report to file: 100%|██████████| 1/1 [00:00<00:00, 21.17it/s]\n"
]
}
],
"execution_count": 2
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 2
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython2",
"version": "2.7.6"
}
},
"nbformat": 4,
"nbformat_minor": 5
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff