Add GPC encoder and main evaluation script

Added gpc_encoder.py implementing the Geometry Preserving Category Encoder (GPCE) for categorical feature encoding. Introduced main.py, a script for loading data, applying various encoders (GPCE, Label, OneHot, Target), training multiple classifiers, evaluating accuracy, and visualizing results. Also added a .gitignore for Python virtual environments and cache files.
This commit is contained in:
stingray0225
2026-01-08 23:57:21 +09:00
parent eb75ddf1e4
commit 87c79d97e8
3 changed files with 326 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
.venv/
__pycache__/