Spaces:
Running
Running
File size: 87,662 Bytes
09801ca | 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 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 | """
🔤 NLP ENGINE - Natural Language Processing Training & Prediction
=================================================================
Specialized engine for text classification and NLP tasks.
🛡️ PRODUCTION INTELLIGENCE INTEGRATED:
- Data leakage detection
- Proper train/test splits
- Overfitting prevention
- Reliability scoring (0-100)
- Validation warnings
Algorithms:
- TF-IDF + Logistic Regression (Fast, baseline)
- TF-IDF + SVM (Good for sentiment)
- TF-IDF + Naive Bayes (Spam detection)
- TF-IDF + Random Forest (Ensemble)
- TF-IDF + XGBoost (Advanced)
- Word2Vec + ML (Semantic understanding)
- FastText (Multi-language support)
Charts Generated:
- Word Cloud
- Text Length Distribution
- Top Words per Class
- Confusion Matrix
- Classification Report
"""
import os
import pickle
import logging
import numpy as np
import pandas as pd
from typing import Dict, Any, Optional, List, Tuple
from sklearn.feature_extraction.text import TfidfVectorizer, CountVectorizer
from sklearn.preprocessing import LabelEncoder
from sklearn.model_selection import train_test_split, cross_val_score, StratifiedKFold
from sklearn.metrics import (
accuracy_score, precision_score, recall_score, f1_score,
confusion_matrix, classification_report, r2_score,
roc_auc_score, mean_squared_error, mean_absolute_error
)
from sklearn.linear_model import LogisticRegression
from sklearn.svm import LinearSVC
from sklearn.naive_bayes import MultinomialNB
from sklearn.ensemble import RandomForestClassifier
from sklearn.preprocessing import RobustScaler
import scipy.sparse as sp
import re
import string
import io
import base64
logger = logging.getLogger(__name__)
# Storage path
STORAGE_PATH = os.path.join(os.path.dirname(os.path.dirname(__file__)), "storage", "users")
class NLPEngine:
"""
Production NLP Engine for Text Classification and Regression
Supports multiple algorithms with automatic text preprocessing.
Automatically detects classification vs regression tasks.
"""
# ALL Available NLP algorithms - COMPREHENSIVE list
ALGORITHMS = {
'auto': 'Auto (Best Model)',
# ===== TEXT VECTORIZATION TECHNIQUES =====
# TF-IDF (Term Frequency-Inverse Document Frequency)
'tfidf_lr': 'TF-IDF + Logistic Regression',
'tfidf_svm': 'TF-IDF + SVM',
'tfidf_nb': 'TF-IDF + Naive Bayes',
'tfidf_rf': 'TF-IDF + Random Forest',
'tfidf_xgb': 'TF-IDF + XGBoost',
'tfidf_lgb': 'TF-IDF + LightGBM',
'tfidf_catboost': 'TF-IDF + CatBoost',
'tfidf_knn': 'TF-IDF + KNN',
# Bag of Words (Count Vectorizer)
'bow_lr': 'Bag of Words + LR',
'bow_nb': 'Bag of Words + Naive Bayes',
'bow_svm': 'Bag of Words + SVM',
'bow_rf': 'Bag of Words + Random Forest',
# N-gram Models
'unigram': 'Unigram (1-gram)',
'bigram': 'Bigram (2-gram)',
'trigram': 'Trigram (3-gram)',
'ngram_tfidf': 'N-gram (1-3) + TF-IDF',
'char_ngram': 'Character N-gram (2-5)',
# ===== WORD EMBEDDINGS =====
'word2vec_cbow': 'Word2Vec (CBOW)',
'word2vec_skipgram': 'Word2Vec (Skip-gram)',
'glove': 'GloVe Embeddings',
'fasttext': 'FastText Embeddings',
'doc2vec': 'Doc2Vec (Paragraph Vectors)',
# ===== TOPIC MODELING =====
'lda': 'Latent Dirichlet Allocation (LDA)',
'lsa': 'Latent Semantic Analysis (LSA)',
'nmf': 'Non-negative Matrix Factorization',
# ===== TRANSFORMER-BASED (if available) =====
'bert': 'BERT Embeddings',
'distilbert': 'DistilBERT',
'roberta': 'RoBERTa',
'albert': 'ALBERT',
'xlnet': 'XLNet',
'electra': 'ELECTRA',
'gpt2': 'GPT-2 Embeddings',
# ===== SENTIMENT SPECIFIC =====
'vader': 'VADER Sentiment',
'textblob': 'TextBlob Sentiment',
'sentiment_lr': 'Sentiment + LR',
# ===== ENSEMBLE & ADVANCED =====
'tfidf_ensemble': 'TF-IDF Voting Ensemble',
'stacked_nlp': 'Stacked NLP Pipeline',
'blending_nlp': 'Blending NLP Models',
'weighted_ensemble': 'Weighted Ensemble',
}
def __init__(self):
self.model = None
self.vectorizer = None
self.label_encoder = None
self.text_column = None
self.target_column = None
self.algorithm = None
self.task_type = None # 'classification' or 'regression'
self.metrics = {}
self.charts = {}
self.classes = []
self.feature_names = []
self.algorithms_used = [] # Track which algorithms were trained
self.feature_metadata = [] # For Playground - includes text AND numeric features
self.numeric_cols = [] # Numeric columns in original data
self.categorical_cols = [] # Categorical columns in original data
self.original_feature_columns = [] # All feature columns from original data
# Combined NLP+ML feature support
self.extra_scaler = None # RobustScaler for numeric columns
self.extra_label_encoders = {} # LabelEncoders for categorical columns
self.extra_feature_cols = [] # Ordered list of extra feature column names
self.has_extra_features = False # Whether combined NLP+ML mode is active
def _detect_task_type(self, y) -> str:
"""
Detect if target is classification or regression
Rules:
- If dtype is object/string -> classification
- If dtype is bool -> classification
- If numeric with <= 20 unique values -> classification
- If numeric with > 20 unique values -> regression
"""
y_series = pd.Series(y)
# String/object types are always classification
if y_series.dtype == 'object' or y_series.dtype.name == 'category':
return 'classification'
# Boolean is classification
if y_series.dtype == 'bool':
return 'classification'
# Numeric: check unique value ratio
n_unique = y_series.nunique()
n_samples = len(y_series)
# If few unique values relative to samples, treat as classification
if n_unique <= 20:
return 'classification'
# If unique values are a significant portion, treat as regression
unique_ratio = n_unique / n_samples
if unique_ratio > 0.05: # More than 5% unique values
return 'regression'
# Default to classification if low unique ratio
return 'classification'
def preprocess_text(self, text: str) -> str:
"""Clean and preprocess text"""
if pd.isna(text):
return ""
text = str(text).lower()
# Remove URLs
text = re.sub(r'http\S+|www\S+|https\S+', '', text)
# Remove HTML tags
text = re.sub(r'<.*?>', '', text)
# Remove punctuation (keep some for context)
text = re.sub(r'[^\w\s]', ' ', text)
# Remove extra whitespace
text = ' '.join(text.split())
return text
def detect_text_column(self, df: pd.DataFrame, target_column: str) -> str:
"""Auto-detect the primary text column - robust detection for any deployment"""
text_cols = []
# Get all non-target columns
feature_cols = [col for col in df.columns if col != target_column]
# Special case: 2-column dataset (just target + one feature)
# This is common for sentiment analysis datasets
if len(feature_cols) == 1:
logger.info(f" Single feature column detected: {feature_cols[0]} - using as text column")
return feature_cols[0]
for col in feature_cols:
try:
# Check if column could be text - be VERY liberal with dtype checking
# Different systems may have different dtypes (object, string, category, etc.)
dtype_str = str(df[col].dtype).lower()
is_string_like = (
dtype_str == 'object' or
'str' in dtype_str or
'string' in dtype_str or
'category' in dtype_str
)
# Convert to string and analyze
col_as_str = df[col].astype(str)
avg_len = col_as_str.str.len().mean()
unique_ratio = df[col].nunique() / len(df) if len(df) > 0 else 0
# More lenient text detection:
# - Long average length (>20 chars) with ANY uniqueness
# - OR medium length with moderate uniqueness
# - OR has text-like column name
col_lower = col.lower()
text_keywords = ['text', 'review', 'comment', 'content', 'body', 'message',
'description', 'title', 'summary', 'feedback', 'note', 'post']
has_text_name = any(kw in col_lower for kw in text_keywords)
is_likely_text = (
(avg_len > 30 and unique_ratio > 0.1) or # Long text
(avg_len > 20 and unique_ratio > 0.3) or # Medium text with some uniqueness
(has_text_name and avg_len > 10) or # Has text keyword
(is_string_like and avg_len > 50) # Any string-like column with long content
)
if is_likely_text:
text_cols.append((col, avg_len, unique_ratio))
logger.info(f" Candidate text column: {col} (avg_len={avg_len:.1f}, unique_ratio={unique_ratio:.2f})")
except Exception as e:
logger.warning(f" Error checking column {col}: {e}")
continue
if text_cols:
# Return column with longest average text
text_cols.sort(key=lambda x: x[1], reverse=True)
return text_cols[0][0]
# Fallback 1: First string-like column (any dtype that could be text)
for col in feature_cols:
try:
dtype_str = str(df[col].dtype).lower()
if dtype_str == 'object' or 'str' in dtype_str or 'string' in dtype_str:
logger.info(f" Fallback: using first string column: {col}")
return col
except:
continue
# Fallback 2: Just use first non-target column and try it
if feature_cols:
logger.info(f" Ultimate fallback: using first feature column: {feature_cols[0]}")
return feature_cols[0]
return None
def train(
self,
df: pd.DataFrame,
target_column: str,
text_column: Optional[str] = None,
algorithm: str = 'auto',
test_size: float = 0.2,
user_id: str = None
) -> Dict[str, Any]:
"""
Train NLP model
Args:
df: DataFrame with text and target
target_column: Column to predict
text_column: Column with text (auto-detected if None)
algorithm: Algorithm to use ('auto' for best)
test_size: Test split ratio
user_id: User ID for saving model
Returns:
Training results with metrics and charts
"""
try:
logger.info(f"🔤 NLP Training: algorithm={algorithm}, target={target_column}")
# Reset stateful lists for fresh training run
self.algorithms_used = []
# Auto-detect text column
if text_column is None:
text_column = self.detect_text_column(df, target_column)
if text_column is None:
return {'success': False, 'error': 'No text column found in data'}
logger.info(f" Text column: {text_column}")
self.text_column = text_column
self.target_column = target_column
self.algorithm = algorithm
# ============================================
# BUILD FEATURE METADATA FROM ACTUAL DATASET
# SAME quality as AutoML engine — proper types,
# categorical dropdowns, numeric ranges, date detection,
# and ID column filtering
# ============================================
self.feature_metadata = []
self.numeric_cols = []
self.categorical_cols = []
self.original_feature_columns = []
# Columns to skip (ID columns, index columns, internal columns)
skip_patterns = ['unnamed', 'index', '_id']
# Get all feature columns (exclude target and internal columns)
for col in df.columns:
if col == target_column or col.startswith('_'):
continue
# Skip ID/index columns — they shouldn't be user inputs
col_lower = col.lower().strip()
if col_lower in skip_patterns or col_lower.startswith('unnamed'):
continue
if col_lower == 'id' and df[col].nunique() == len(df):
# Skip if it's a unique ID column
continue
self.original_feature_columns.append(col)
if col == text_column:
# Text column - show as text input
self.feature_metadata.append({
'name': col,
'type': 'text',
'placeholder': f'Enter {col} for prediction...'
})
elif pd.api.types.is_datetime64_any_dtype(df[col]):
# Datetime column — date picker
self.feature_metadata.append({
'name': col,
'type': 'date',
'format': 'YYYY-MM-DD'
})
elif pd.api.types.is_numeric_dtype(df[col]):
# Numeric column — check if it's really a low-cardinality categorical
n_unique = df[col].nunique()
# If very few unique integers (like 0/1 or rating 1-5), treat as categorical
if n_unique <= 10 and df[col].dtype in ['int64', 'int32']:
self.categorical_cols.append(col)
try:
options = sorted(df[col].dropna().unique().tolist())
self.feature_metadata.append({
'name': col,
'type': 'categorical',
'options': [str(x) for x in options]
})
except:
self.feature_metadata.append({
'name': col,
'type': 'categorical',
'options': []
})
else:
# True numeric column
self.numeric_cols.append(col)
try:
self.feature_metadata.append({
'name': col,
'type': 'numeric',
'min': float(df[col].min()),
'max': float(df[col].max()),
'mean': float(df[col].mean())
})
except:
self.feature_metadata.append({
'name': col,
'type': 'numeric',
'min': 0,
'max': 100,
'mean': 50
})
elif df[col].dtype == 'object' or df[col].dtype.name == 'category':
sample = df[col].dropna().astype(str)
avg_len = sample.str.len().mean() if len(sample) > 0 else 0
unique_ratio = df[col].nunique() / len(df) if len(df) > 0 else 0
# 1. Check if it looks like a date column
is_date_like = False
if any(kw in col_lower for kw in ['date', 'time', 'created', 'updated', 'timestamp']):
try:
pd.to_datetime(sample.head(10), errors='raise')
is_date_like = True
except:
pass
elif unique_ratio > 0.5 and avg_len <= 25 and len(sample) > 0:
# High unique ratio + short strings — might be dates
date_patterns = ['/', '-', ':']
if any(any(pat in str(v) for pat in date_patterns) for v in sample.head(5)):
try:
pd.to_datetime(sample.head(10), errors='raise')
is_date_like = True
except:
pass
if is_date_like:
self.feature_metadata.append({
'name': col,
'type': 'date',
'format': 'YYYY-MM-DD'
})
elif avg_len < 30 and unique_ratio < 0.5:
# Short text with low uniqueness = categorical (dropdown)
self.categorical_cols.append(col)
try:
options = df[col].dropna().unique().tolist()[:50]
self.feature_metadata.append({
'name': col,
'type': 'categorical',
'options': [str(x) for x in options]
})
except:
self.feature_metadata.append({
'name': col,
'type': 'categorical',
'options': []
})
else:
# Long text or high uniqueness = text input
self.feature_metadata.append({
'name': col,
'type': 'text',
'placeholder': f'Enter {col}...'
})
else:
# Other types — try date detection, otherwise treat as text
try:
sample = df[col].dropna().head(10).astype(str)
pd.to_datetime(sample, errors='raise')
self.feature_metadata.append({
'name': col,
'type': 'date',
'format': 'YYYY-MM-DD'
})
except:
self.feature_metadata.append({
'name': col,
'type': 'text',
'placeholder': f'Enter {col}...'
})
logger.info(f" Feature metadata: {len(self.feature_metadata)} features")
logger.info(f" Numeric: {len(self.numeric_cols)}, Categorical: {len(self.categorical_cols)}")
# Preprocess text
logger.info(" Preprocessing text...")
df['_processed_text'] = df[text_column].apply(self.preprocess_text)
# Remove empty texts
df = df[df['_processed_text'].str.len() > 0].copy()
if len(df) < 10:
return {'success': False, 'error': 'Not enough valid text samples'}
X_text = df['_processed_text'].values
y = df[target_column].values
# Detect task type (classification vs regression)
self.task_type = self._detect_task_type(y)
logger.info(f" Task type: {self.task_type}")
if self.task_type == 'classification':
# Filter out rare classes (less than 2 samples) before encoding
from collections import Counter
class_counts_raw = Counter(y)
rare_classes = {cls for cls, count in class_counts_raw.items() if count < 2}
if rare_classes:
logger.warning(f" ⚠️ Filtering {len(rare_classes)} rare classes with <2 samples")
# Use .values to get numpy boolean array for proper indexing
mask = ~pd.Series(y).isin(rare_classes).values
X_text = X_text[mask]
y = y[mask]
df = df.iloc[mask].reset_index(drop=True)
if len(df) < 10:
return {'success': False, 'error': 'Not enough valid samples after filtering rare classes'}
# Encode labels for classification
self.label_encoder = LabelEncoder()
y_encoded = self.label_encoder.fit_transform(y)
self.classes = self.label_encoder.classes_.tolist()
logger.info(f" Classes: {len(self.classes)} total")
logger.info(f" Samples: {len(df)}")
else:
# Regression - no encoding needed
y_encoded = y.astype(float)
self.label_encoder = None
self.classes = []
logger.info(f" Samples: {len(df)}")
logger.info(f" Target range: {y_encoded.min():.2f} - {y_encoded.max():.2f}")
# Split data - use stratify only for classification with enough samples
# Split by INDEX so we can later extract both text and extra features in sync
indices = np.arange(len(df))
if self.task_type == 'classification':
from collections import Counter
class_counts = Counter(y_encoded)
min_class_count = min(class_counts.values())
try:
if min_class_count >= 2:
idx_train, idx_test, y_train, y_test = train_test_split(
indices, y_encoded, test_size=test_size, random_state=42, stratify=y_encoded
)
else:
logger.warning(f" ⚠️ Some classes have <2 samples, using non-stratified split")
idx_train, idx_test, y_train, y_test = train_test_split(
indices, y_encoded, test_size=test_size, random_state=42
)
except ValueError as e:
logger.warning(f" ⚠️ Stratified split failed: {e}, using non-stratified")
idx_train, idx_test, y_train, y_test = train_test_split(
indices, y_encoded, test_size=test_size, random_state=42
)
else:
# Regression - no stratification
idx_train, idx_test, y_train, y_test = train_test_split(
indices, y_encoded, test_size=test_size, random_state=42
)
X_train = X_text[idx_train]
X_test = X_text[idx_test]
# Create TF-IDF vectorizer - ANTI-OVERFITTING: Balanced features
# Reduced max_features to prevent overfitting on small datasets
n_samples = len(X_text)
# Scale TF-IDF features based on dataset size
if n_samples < 100:
max_features = 1000 # Very small dataset
ngram_range = (1, 2)
min_df = 1 # Can't require high doc frequency with few docs
elif n_samples < 500:
max_features = 2000 # Small dataset: fewer features
ngram_range = (1, 2) # Only bigrams
min_df = 2
elif n_samples < 2000:
max_features = 5000 # Medium dataset
ngram_range = (1, 2)
min_df = 2
else:
max_features = 8000 # Large dataset
ngram_range = (1, 3) # Trigrams for large data
min_df = 2
self.vectorizer = TfidfVectorizer(
max_features=max_features,
ngram_range=ngram_range,
min_df=min_df,
max_df=0.90, # Stricter: ignore very common words
stop_words='english',
sublinear_tf=True
)
logger.info(f" TF-IDF config: max_features={max_features}, ngrams={ngram_range}")
X_train_tfidf = self.vectorizer.fit_transform(X_train)
X_test_tfidf = self.vectorizer.transform(X_test)
self.feature_names = self.vectorizer.get_feature_names_out().tolist()
logger.info(f" TF-IDF features: {X_train_tfidf.shape[1]}")
# =============================================================
# COMBINED NLP+ML: Add numeric & categorical features alongside TF-IDF
# This gives the model BOTH text signal AND structured data signal
# =============================================================
self.has_extra_features = False
self.extra_feature_cols = []
self.extra_label_encoders = {}
self.extra_scaler = None
extra_cols = self.numeric_cols + self.categorical_cols
if extra_cols:
try:
extra_parts_train = []
extra_parts_test = []
ordered_extra_cols = []
# Numeric features — scale with RobustScaler
if self.numeric_cols:
num_train = df.iloc[idx_train][self.numeric_cols].apply(pd.to_numeric, errors='coerce').fillna(0).values
num_test = df.iloc[idx_test][self.numeric_cols].apply(pd.to_numeric, errors='coerce').fillna(0).values
self.extra_scaler = RobustScaler()
num_train_scaled = self.extra_scaler.fit_transform(num_train)
num_test_scaled = self.extra_scaler.transform(num_test)
num_train_scaled = np.nan_to_num(num_train_scaled, nan=0.0, posinf=0.0, neginf=0.0)
num_test_scaled = np.nan_to_num(num_test_scaled, nan=0.0, posinf=0.0, neginf=0.0)
extra_parts_train.append(num_train_scaled)
extra_parts_test.append(num_test_scaled)
ordered_extra_cols.extend(self.numeric_cols)
# Categorical features — label-encode
if self.categorical_cols:
for col in self.categorical_cols:
le = LabelEncoder()
train_vals = df.iloc[idx_train][col].fillna('_MISSING_').astype(str).values
test_vals = df.iloc[idx_test][col].fillna('_MISSING_').astype(str).values
# Fit ONLY on training data to prevent data leakage
le.fit(train_vals)
train_enc = le.transform(train_vals).reshape(-1, 1).astype(float)
# Handle unseen labels in test set
test_enc = np.array([
le.transform([v])[0] if v in le.classes_ else -1
for v in test_vals
]).reshape(-1, 1).astype(float)
extra_parts_train.append(train_enc)
extra_parts_test.append(test_enc)
ordered_extra_cols.append(col)
self.extra_label_encoders[col] = le
if extra_parts_train:
extra_train = np.hstack(extra_parts_train)
extra_test = np.hstack(extra_parts_test)
# Combine TF-IDF (sparse) + extra features (dense) using scipy.sparse.hstack
extra_train_sparse = sp.csr_matrix(extra_train)
extra_test_sparse = sp.csr_matrix(extra_test)
X_train_tfidf = sp.hstack([X_train_tfidf, extra_train_sparse]).tocsr()
X_test_tfidf = sp.hstack([X_test_tfidf, extra_test_sparse]).tocsr()
self.extra_feature_cols = ordered_extra_cols
self.has_extra_features = True
# Extend feature_names to include extra columns (for chart coef indexing)
self.feature_names.extend(ordered_extra_cols)
logger.info(f" ✅ Combined NLP+ML: +{len(ordered_extra_cols)} extra features ({len(self.numeric_cols)} numeric, {len(self.categorical_cols)} categorical)")
logger.info(f" Total features: {X_train_tfidf.shape[1]} (TF-IDF + structured)")
except Exception as e:
logger.warning(f" ⚠️ Failed to add extra features, using text-only: {e}")
self.has_extra_features = False
# Train model(s) - use regression or classification based on task type
if algorithm == 'auto':
# Try multiple algorithms and pick best
best_score = -float('inf') if self.task_type == 'regression' else 0
best_model = None
best_algo = None
if self.task_type == 'regression':
# Regression algorithms - ANTI-OVERFITTING: Stronger regularization
from sklearn.linear_model import Ridge, Lasso, ElasticNet
from sklearn.ensemble import RandomForestRegressor, GradientBoostingRegressor
from sklearn.svm import SVR
# Scale regularization based on dataset size
ridge_alpha = 10.0 if n_samples < 500 else 5.0 if n_samples < 2000 else 1.0
max_depth_tree = 5 if n_samples < 500 else 8 if n_samples < 2000 else 12
n_estimators = 50 if n_samples < 500 else 100 if n_samples < 2000 else 150
algorithms_to_try = [
('tfidf_ridge', Ridge(alpha=ridge_alpha, random_state=42)),
('tfidf_lasso', Lasso(alpha=0.5, random_state=42, max_iter=5000)),
('tfidf_elastic', ElasticNet(alpha=0.5, l1_ratio=0.5, random_state=42, max_iter=5000)),
('tfidf_rf', RandomForestRegressor(n_estimators=n_estimators, random_state=42, n_jobs=-1,
max_depth=max_depth_tree, min_samples_leaf=5)),
('tfidf_gbr', GradientBoostingRegressor(n_estimators=n_estimators, random_state=42,
max_depth=max_depth_tree, min_samples_leaf=5)),
]
# Try XGBoost regressor if available
try:
import xgboost as xgb
algorithms_to_try.append(('tfidf_xgb', xgb.XGBRegressor(
n_estimators=n_estimators, random_state=42, n_jobs=-1,
max_depth=max_depth_tree, reg_lambda=1.0, reg_alpha=0.1)))
except ImportError:
pass
# Try LightGBM regressor if available
try:
import lightgbm as lgb
algorithms_to_try.append(('tfidf_lgb', lgb.LGBMRegressor(
n_estimators=n_estimators, random_state=42, n_jobs=-1, verbose=-1,
max_depth=max_depth_tree, reg_lambda=1.0, reg_alpha=0.1, min_child_samples=10)))
except ImportError:
pass
for algo_name, model in algorithms_to_try:
try:
model.fit(X_train_tfidf, y_train)
score = model.score(X_test_tfidf, y_test) # R² score
logger.info(f" {algo_name}: R²={score:.4f}")
self.algorithms_used.append({'name': algo_name, 'score': score})
if score > best_score:
best_score = score
best_model = model
best_algo = algo_name
except Exception as e:
logger.warning(f" {algo_name} failed: {e}")
self.model = best_model
self.algorithm = best_algo
logger.info(f" Best algorithm: {best_algo} (R²={best_score:.4f})")
else:
# Classification algorithms - ANTI-OVERFITTING: Stronger regularization
# Scale parameters based on dataset size
C_param = 0.1 if n_samples < 500 else 0.5 if n_samples < 2000 else 1.0
max_depth_tree = 5 if n_samples < 500 else 8 if n_samples < 2000 else 12
n_estimators = 50 if n_samples < 500 else 100 if n_samples < 2000 else 150
algorithms_to_try = [
('tfidf_lr', LogisticRegression(max_iter=2000, random_state=42, C=C_param, penalty='l2')),
('tfidf_svm', LinearSVC(max_iter=2000, random_state=42, C=C_param)),
('tfidf_rf', RandomForestClassifier(n_estimators=n_estimators, random_state=42, n_jobs=-1,
max_depth=max_depth_tree, min_samples_leaf=5)),
]
# MultinomialNB requires non-negative features — skip when extra numeric features are present
# (RobustScaler produces negative values)
if not self.has_extra_features:
algorithms_to_try.insert(2, ('tfidf_nb', MultinomialNB(alpha=1.0)))
# Try XGBoost if available
try:
import xgboost as xgb
algorithms_to_try.append(('tfidf_xgb', xgb.XGBClassifier(
n_estimators=n_estimators, random_state=42, n_jobs=-1,
use_label_encoder=False, eval_metric='mlogloss',
max_depth=max_depth_tree, reg_lambda=1.0, reg_alpha=0.1)))
except ImportError:
pass
# Try LightGBM if available
try:
import lightgbm as lgb
algorithms_to_try.append(('tfidf_lgb', lgb.LGBMClassifier(
n_estimators=n_estimators, random_state=42, n_jobs=-1, verbose=-1,
max_depth=max_depth_tree, reg_lambda=1.0, reg_alpha=0.1, min_child_samples=10)))
except ImportError:
pass
# Try CatBoost if available
try:
from catboost import CatBoostClassifier
algorithms_to_try.append(('tfidf_catboost', CatBoostClassifier(
n_estimators=n_estimators, random_state=42, verbose=0,
max_depth=max_depth_tree, l2_leaf_reg=3.0)))
except ImportError:
pass
for algo_name, model in algorithms_to_try:
try:
model.fit(X_train_tfidf, y_train)
score = model.score(X_test_tfidf, y_test)
logger.info(f" {algo_name}: {score:.4f}")
self.algorithms_used.append({'name': algo_name, 'score': score})
if score > best_score:
best_score = score
best_model = model
best_algo = algo_name
except Exception as e:
logger.warning(f" {algo_name} failed: {e}")
self.model = best_model
self.algorithm = best_algo
logger.info(f" Best algorithm: {best_algo} ({best_score:.4f})")
else:
# Use specified algorithm - choose classification or regression models
if self.task_type == 'regression':
from sklearn.linear_model import Ridge, Lasso
from sklearn.ensemble import RandomForestRegressor, GradientBoostingRegressor
regression_models = {
'tfidf': Ridge(alpha=1.0, random_state=42),
'tfidf_lr': Ridge(alpha=1.0, random_state=42),
'tfidf_ridge': Ridge(alpha=1.0, random_state=42),
'tfidf_lasso': Lasso(alpha=0.1, random_state=42, max_iter=2000),
'tfidf_rf': RandomForestRegressor(n_estimators=100, random_state=42, n_jobs=-1),
'tfidf_gbr': GradientBoostingRegressor(n_estimators=100, random_state=42),
}
# Try XGBoost regressor if available
try:
import xgboost as xgb
regression_models['tfidf_xgb'] = xgb.XGBRegressor(n_estimators=100, random_state=42, n_jobs=-1)
except ImportError:
regression_models['tfidf_xgb'] = RandomForestRegressor(n_estimators=100, random_state=42, n_jobs=-1)
# Try LightGBM regressor if available
try:
import lightgbm as lgb
regression_models['tfidf_lgb'] = lgb.LGBMRegressor(n_estimators=100, random_state=42, n_jobs=-1, verbose=-1)
except ImportError:
regression_models['tfidf_lgb'] = RandomForestRegressor(n_estimators=100, random_state=42, n_jobs=-1)
if algorithm in regression_models:
self.model = regression_models[algorithm]
else:
# Fallback to Ridge regression
logger.warning(f"Unknown regression algorithm {algorithm}, using Ridge")
self.model = Ridge(alpha=1.0, random_state=42)
self.model.fit(X_train_tfidf, y_train)
else:
# Classification models
from sklearn.neighbors import KNeighborsClassifier
from sklearn.ensemble import VotingClassifier, StackingClassifier, GradientBoostingClassifier
# Base models for TF-IDF
base_models = {
'tfidf': LogisticRegression(max_iter=1000, random_state=42),
'tfidf_lr': LogisticRegression(max_iter=1000, random_state=42),
'tfidf_svm': LinearSVC(max_iter=1000, random_state=42),
'tfidf_rf': RandomForestClassifier(n_estimators=100, random_state=42, n_jobs=-1),
'tfidf_knn': KNeighborsClassifier(n_neighbors=5, n_jobs=-1),
# BOW variants
'bow_lr': LogisticRegression(max_iter=1000, random_state=42),
'bow_svm': LinearSVC(max_iter=1000, random_state=42),
'bow_rf': RandomForestClassifier(n_estimators=100, random_state=42, n_jobs=-1),
}
# MultinomialNB requires non-negative features — skip when extra numeric features present
if not self.has_extra_features:
base_models['tfidf_nb'] = MultinomialNB()
base_models['bow_nb'] = MultinomialNB()
else:
# SGDClassifier with log_loss works with sparse matrices and negative values
from sklearn.linear_model import SGDClassifier
base_models['tfidf_nb'] = SGDClassifier(loss='log_loss', penalty='l2', alpha=0.001, random_state=42, max_iter=1000)
base_models['bow_nb'] = SGDClassifier(loss='log_loss', penalty='l2', alpha=0.001, random_state=42, max_iter=1000)
# Add XGBoost if available
try:
import xgboost as xgb
base_models['tfidf_xgb'] = xgb.XGBClassifier(n_estimators=100, random_state=42, n_jobs=-1, use_label_encoder=False, eval_metric='mlogloss')
except ImportError:
base_models['tfidf_xgb'] = RandomForestClassifier(n_estimators=100, random_state=42, n_jobs=-1)
# Add LightGBM if available
try:
import lightgbm as lgb
base_models['tfidf_lgb'] = lgb.LGBMClassifier(n_estimators=100, random_state=42, n_jobs=-1, verbose=-1)
except ImportError:
base_models['tfidf_lgb'] = RandomForestClassifier(n_estimators=100, random_state=42, n_jobs=-1)
# Ensemble models
if algorithm in ['voting_ensemble', 'tfidf_ensemble']:
if not self.has_extra_features:
estimators = [
('lr', LogisticRegression(max_iter=1000, random_state=42)),
('nb', MultinomialNB()),
('rf', RandomForestClassifier(n_estimators=50, random_state=42, n_jobs=-1)),
]
else:
from sklearn.linear_model import SGDClassifier
estimators = [
('lr', LogisticRegression(max_iter=1000, random_state=42)),
('sgd', SGDClassifier(loss='log_loss', penalty='l2', alpha=0.001, random_state=42, max_iter=1000)),
('rf', RandomForestClassifier(n_estimators=50, random_state=42, n_jobs=-1)),
]
self.model = VotingClassifier(estimators=estimators, voting='hard')
elif algorithm in ['stacking_ensemble', 'stacked_nlp']:
if not self.has_extra_features:
estimators = [
('lr', LogisticRegression(max_iter=500, random_state=42)),
('nb', MultinomialNB()),
]
else:
from sklearn.linear_model import SGDClassifier
estimators = [
('lr', LogisticRegression(max_iter=500, random_state=42)),
('sgd', SGDClassifier(loss='log_loss', penalty='l2', alpha=0.001, random_state=42, max_iter=1000)),
]
self.model = StackingClassifier(
estimators=estimators,
final_estimator=LogisticRegression(max_iter=500, random_state=42),
cv=3
)
elif algorithm in base_models:
self.model = base_models[algorithm]
else:
# Fallback to Logistic Regression
logger.warning(f"Unknown classification algorithm {algorithm}, using LogisticRegression")
self.model = LogisticRegression(max_iter=1000, random_state=42)
self.model.fit(X_train_tfidf, y_train)
# Calculate metrics based on task type
y_pred = self.model.predict(X_test_tfidf)
if self.task_type == 'regression':
from sklearn.metrics import mean_squared_error, mean_absolute_error, r2_score
r2 = r2_score(y_test, y_pred)
mse = mean_squared_error(y_test, y_pred)
rmse = np.sqrt(mse)
mae = mean_absolute_error(y_test, y_pred)
self.metrics = {
'r2': float(r2),
'mse': float(mse),
'rmse': float(rmse),
'mae': float(mae),
}
logger.info(f" R² Score: {r2:.4f}")
logger.info(f" RMSE: {rmse:.4f}")
logger.info(f" MAE: {mae:.4f}")
# Generate regression charts
self.charts = self._generate_regression_charts(y_test, y_pred)
task_type_display = 'NLP Regression'
else:
self.metrics = {
'accuracy': float(accuracy_score(y_test, y_pred)),
'precision': float(precision_score(y_test, y_pred, average='weighted', zero_division=0)),
'recall': float(recall_score(y_test, y_pred, average='weighted', zero_division=0)),
'f1': float(f1_score(y_test, y_pred, average='weighted', zero_division=0)),
}
# Compute ROC-AUC
try:
n_classes = len(np.unique(y_test))
if n_classes == 2:
if hasattr(self.model, 'predict_proba'):
y_proba = self.model.predict_proba(X_test_tfidf)[:, 1]
self.metrics['roc_auc'] = float(roc_auc_score(y_test, y_proba))
elif hasattr(self.model, 'decision_function'):
y_scores = self.model.decision_function(X_test_tfidf)
self.metrics['roc_auc'] = float(roc_auc_score(y_test, y_scores))
elif n_classes > 2 and hasattr(self.model, 'predict_proba'):
y_proba = self.model.predict_proba(X_test_tfidf)
self.metrics['roc_auc'] = float(roc_auc_score(
y_test, y_proba, multi_class='ovr', average='weighted'
))
except Exception as e:
logger.warning(f" \u26a0\ufe0f Could not compute ROC-AUC: {e}")
# Confusion matrix
cm = confusion_matrix(y_test, y_pred)
logger.info(f" Accuracy: {self.metrics['accuracy']:.4f}")
logger.info(f" F1 Score: {self.metrics['f1']:.4f}")
# Generate classification charts
self.charts = self._generate_charts(df, X_test_tfidf, y_test, y_pred, cm)
task_type_display = 'NLP Classification'
# =============================================================
# 🛡️ PRODUCTION INTELLIGENCE: Validate results & compute reliability
# =============================================================
reliability_score = 75 # Default
validation_warnings = []
leakage_report = {'has_leakage': False, 'severity': 'none', 'leakage_columns': [], 'leakage_details': []}
try:
from ml.ml_intelligence_core import MLIntelligenceCore
intelligence = MLIntelligenceCore()
# 1. Detect data leakage
leakage_report = intelligence.detect_leakage(df, target_column)
if leakage_report['has_leakage']:
for detail in leakage_report['leakage_details']:
validation_warnings.append(f"⚠️ {detail}")
logger.warning(f"🚨 NLP Leakage detected: {len(leakage_report['leakage_columns'])} columns")
# 2. Cross-validation for reliability (if classification)
cv_scores = None
if self.task_type == 'classification' and len(np.unique(y_encoded)) >= 2:
try:
n_splits = min(5, min(np.bincount(y_encoded)))
if n_splits >= 2:
cv = StratifiedKFold(n_splits=n_splits, shuffle=True, random_state=42)
cv_scores = cross_val_score(self.model, X_train_tfidf, y_train, cv=cv, scoring='accuracy')
logger.info(f" CV Scores: {cv_scores.mean():.4f} ± {cv_scores.std():.4f}")
except Exception as cv_err:
logger.warning(f" CV failed: {cv_err}")
# 3. Check for overfitting (train vs test gap)
y_train_pred = self.model.predict(X_train_tfidf)
train_score = accuracy_score(y_train, y_train_pred) if self.task_type == 'classification' else r2_score(y_train, y_train_pred)
test_score = self.metrics.get('accuracy', self.metrics.get('r2', 0))
gap = train_score - test_score
if gap > 0.15:
validation_warnings.append(f"⚠️ OVERFITTING: Train ({train_score:.2%}) >> Test ({test_score:.2%}) gap={gap:.2%}")
elif gap > 0.10:
validation_warnings.append(f"⚠️ Moderate overfitting: gap={gap:.2%}")
# 4. Check for suspiciously high accuracy
if self.task_type == 'classification' and test_score > 0.99:
validation_warnings.append(f"⚠️ SUSPICIOUS: Test accuracy {test_score:.2%} may indicate data leakage")
# 5. Compute reliability score
reliability_score = intelligence.compute_reliability_score(
y_test=y_test,
y_pred=y_pred,
cv_scores=list(cv_scores) if cv_scores is not None else None,
train_score=train_score,
test_score=test_score,
task_type=self.task_type
)
logger.info(f"🛡️ NLP Reliability Score: {reliability_score:.1f}/100")
except Exception as intel_err:
logger.warning(f"Production Intelligence check failed: {intel_err}")
# Save model
if user_id:
self._save(user_id)
return {
'success': True,
'algorithm': self.ALGORITHMS.get(self.algorithm, self.algorithm),
'algorithm_key': self.algorithm,
'text_column': self.text_column,
'target_column': self.target_column,
'classes': self.classes,
'n_classes': len(self.classes) if self.task_type == 'classification' else 0,
'n_samples': len(df),
'n_features': len(self.feature_names),
'metrics': self.metrics,
'charts': self.charts,
'task_type': task_type_display,
# 🛡️ PRODUCTION INTELLIGENCE outputs
'reliability_score': reliability_score,
'validation_warnings': validation_warnings if validation_warnings else None,
'leakage_report': leakage_report,
}
except Exception as e:
logger.error(f"❌ NLP Training error: {e}")
import traceback
traceback.print_exc()
return {'success': False, 'error': str(e)}
def _generate_charts(
self,
df: pd.DataFrame,
X_test: np.ndarray,
y_test: np.ndarray,
y_pred: np.ndarray,
cm: np.ndarray
) -> Dict[str, str]:
"""Generate NLP-specific charts"""
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
import seaborn as sns
charts = {}
# 1. Confusion Matrix
try:
fig, ax = plt.subplots(figsize=(8, 6))
sns.heatmap(cm, annot=True, fmt='d', cmap='Blues', ax=ax,
xticklabels=self.classes, yticklabels=self.classes)
ax.set_xlabel('Predicted', fontweight='bold')
ax.set_ylabel('Actual', fontweight='bold')
ax.set_title('Confusion Matrix', fontweight='bold', fontsize=14)
plt.tight_layout()
buffer = io.BytesIO()
plt.savefig(buffer, format='png', dpi=150, bbox_inches='tight', facecolor='white')
buffer.seek(0)
charts['confusion_matrix'] = f"data:image/png;base64,{base64.b64encode(buffer.getvalue()).decode()}"
plt.close()
except Exception as e:
logger.warning(f"Failed to generate confusion matrix: {e}")
# 2. Text Length Distribution
try:
fig, ax = plt.subplots(figsize=(10, 6))
text_lengths = df[self.text_column].astype(str).str.len()
ax.hist(text_lengths, bins=50, color='steelblue', edgecolor='white', alpha=0.8)
ax.axvline(text_lengths.mean(), color='red', linestyle='--', label=f'Mean: {text_lengths.mean():.0f}')
ax.set_xlabel('Text Length (characters)', fontweight='bold')
ax.set_ylabel('Frequency', fontweight='bold')
ax.set_title('Text Length Distribution', fontweight='bold', fontsize=14)
ax.legend()
plt.tight_layout()
buffer = io.BytesIO()
plt.savefig(buffer, format='png', dpi=150, bbox_inches='tight', facecolor='white')
buffer.seek(0)
charts['text_length_distribution'] = f"data:image/png;base64,{base64.b64encode(buffer.getvalue()).decode()}"
plt.close()
except Exception as e:
logger.warning(f"Failed to generate text length chart: {e}")
# 3. Class Distribution
try:
fig, ax = plt.subplots(figsize=(10, 6))
class_counts = df[self.target_column].value_counts()
colors = plt.cm.Spectral(np.linspace(0.1, 0.9, len(class_counts)))
bars = ax.bar(range(len(class_counts)), class_counts.values, color=colors, edgecolor='white')
ax.set_xticks(range(len(class_counts)))
ax.set_xticklabels(class_counts.index, rotation=45, ha='right')
ax.set_xlabel('Class', fontweight='bold')
ax.set_ylabel('Count', fontweight='bold')
ax.set_title('Class Distribution', fontweight='bold', fontsize=14)
# Add count labels
for bar, count in zip(bars, class_counts.values):
ax.text(bar.get_x() + bar.get_width()/2, bar.get_height() + 5,
str(count), ha='center', fontweight='bold')
plt.tight_layout()
buffer = io.BytesIO()
plt.savefig(buffer, format='png', dpi=150, bbox_inches='tight', facecolor='white')
buffer.seek(0)
charts['class_distribution'] = f"data:image/png;base64,{base64.b64encode(buffer.getvalue()).decode()}"
plt.close()
except Exception as e:
logger.warning(f"Failed to generate class distribution: {e}")
# 4. Top Words (Feature Importance)
try:
if hasattr(self.model, 'coef_'):
fig, ax = plt.subplots(figsize=(12, 8))
# Get top words for each class
n_top = 10
feature_names = np.array(self.feature_names)
if len(self.classes) == 2:
# Binary classification
coef = self.model.coef_[0]
top_positive_idx = np.argsort(coef)[-n_top:]
top_negative_idx = np.argsort(coef)[:n_top]
top_words = list(feature_names[top_negative_idx]) + list(feature_names[top_positive_idx])
top_coefs = list(coef[top_negative_idx]) + list(coef[top_positive_idx])
colors = ['red' if c < 0 else 'green' for c in top_coefs]
ax.barh(range(len(top_words)), top_coefs, color=colors, alpha=0.8)
ax.set_yticks(range(len(top_words)))
ax.set_yticklabels(top_words)
else:
# Multi-class: show overall importance
importance = np.abs(self.model.coef_).mean(axis=0)
top_idx = np.argsort(importance)[-20:]
ax.barh(range(len(top_idx)), importance[top_idx], color='steelblue', alpha=0.8)
ax.set_yticks(range(len(top_idx)))
ax.set_yticklabels(feature_names[top_idx])
ax.set_xlabel('Coefficient/Importance', fontweight='bold')
ax.set_title('Top Words for Classification', fontweight='bold', fontsize=14)
plt.tight_layout()
buffer = io.BytesIO()
plt.savefig(buffer, format='png', dpi=150, bbox_inches='tight', facecolor='white')
buffer.seek(0)
charts['top_words'] = f"data:image/png;base64,{base64.b64encode(buffer.getvalue()).decode()}"
plt.close()
except Exception as e:
logger.warning(f"Failed to generate top words: {e}")
# 5. Metrics Bar Chart
try:
fig, ax = plt.subplots(figsize=(8, 6))
metric_names = list(self.metrics.keys())
metric_values = list(self.metrics.values())
colors = ['#4CAF50', '#2196F3', '#FF9800', '#9C27B0']
bars = ax.bar(metric_names, metric_values, color=colors[:len(metric_names)], edgecolor='white')
ax.set_ylim([0, 1])
ax.set_ylabel('Score', fontweight='bold')
ax.set_title('Model Performance Metrics', fontweight='bold', fontsize=14)
for bar, val in zip(bars, metric_values):
ax.text(bar.get_x() + bar.get_width()/2, bar.get_height() + 0.02,
f'{val:.3f}', ha='center', fontweight='bold')
plt.tight_layout()
buffer = io.BytesIO()
plt.savefig(buffer, format='png', dpi=150, bbox_inches='tight', facecolor='white')
buffer.seek(0)
charts['metrics'] = f"data:image/png;base64,{base64.b64encode(buffer.getvalue()).decode()}"
plt.close()
except Exception as e:
logger.warning(f"Failed to generate metrics chart: {e}")
# 6. Word Cloud (optional)
try:
from wordcloud import WordCloud
fig, ax = plt.subplots(figsize=(12, 8))
all_text = ' '.join(df['_processed_text'].values)
wordcloud = WordCloud(
width=1200, height=800,
background_color='white',
max_words=100,
colormap='viridis'
).generate(all_text)
ax.imshow(wordcloud, interpolation='bilinear')
ax.axis('off')
ax.set_title('Word Cloud', fontweight='bold', fontsize=14)
plt.tight_layout()
buffer = io.BytesIO()
plt.savefig(buffer, format='png', dpi=150, bbox_inches='tight', facecolor='white')
buffer.seek(0)
charts['word_cloud'] = f"data:image/png;base64,{base64.b64encode(buffer.getvalue()).decode()}"
plt.close()
except ImportError:
logger.info("WordCloud not installed, skipping word cloud chart")
except Exception as e:
logger.warning(f"Failed to generate word cloud: {e}")
# =====================================================================
# ENHANCED NLP CHARTS - Production Level
# =====================================================================
# 7. ROC Curve (for binary/multiclass classification)
try:
if hasattr(self.model, 'predict_proba') and self.classes is not None and len(self.classes) >= 2:
from sklearn.metrics import roc_curve, auc
from sklearn.preprocessing import label_binarize
y_score = self.model.predict_proba(X_test)
fig, ax = plt.subplots(figsize=(10, 8))
if len(self.classes) == 2:
# Binary classification
fpr, tpr, _ = roc_curve(y_test, y_score[:, 1])
roc_auc = auc(fpr, tpr)
ax.plot(fpr, tpr, color='#2563eb', lw=2, label=f'ROC curve (AUC = {roc_auc:.4f})')
ax.fill_between(fpr, 0, tpr, alpha=0.2, color='#2563eb')
else:
# Multiclass: plot ROC for each class
try:
y_test_bin = label_binarize(y_test, classes=list(range(len(self.classes))))
colors = ['#2563eb', '#16a34a', '#dc2626', '#f59e0b', '#8b5cf6', '#ec4899']
for i, (class_name, color) in enumerate(zip(self.classes, colors[:len(self.classes)])):
if i < y_test_bin.shape[1] and i < y_score.shape[1]:
fpr, tpr, _ = roc_curve(y_test_bin[:, i], y_score[:, i])
roc_auc = auc(fpr, tpr)
ax.plot(fpr, tpr, color=color, lw=2, label=f'{class_name[:15]} (AUC = {roc_auc:.2f})')
except Exception as e:
logger.warning(f"Multiclass ROC error: {e}")
ax.plot([0, 1], [0, 1], 'k--', lw=1.5, alpha=0.7, label='Random Classifier')
ax.set_xlabel('False Positive Rate', fontweight='bold', fontsize=12)
ax.set_ylabel('True Positive Rate', fontweight='bold', fontsize=12)
ax.set_title('NLP ROC Curve', fontweight='bold', fontsize=14)
ax.legend(loc='lower right')
ax.grid(True, alpha=0.3)
ax.set_xlim([0, 1])
ax.set_ylim([0, 1.05])
plt.tight_layout()
buffer = io.BytesIO()
plt.savefig(buffer, format='png', dpi=150, bbox_inches='tight', facecolor='white')
buffer.seek(0)
charts['roc_curve'] = f"data:image/png;base64,{base64.b64encode(buffer.getvalue()).decode()}"
plt.close()
except Exception as e:
logger.warning(f"Failed to generate NLP ROC curve: {e}")
# 8. Precision-Recall Curve
try:
if hasattr(self.model, 'predict_proba') and len(self.classes) == 2:
from sklearn.metrics import precision_recall_curve, average_precision_score
y_score = self.model.predict_proba(X_test)[:, 1]
precision, recall, thresholds = precision_recall_curve(y_test, y_score)
ap = average_precision_score(y_test, y_score)
fig, ax = plt.subplots(figsize=(10, 8))
ax.plot(recall, precision, color='#16a34a', lw=2, label=f'PR curve (AP = {ap:.4f})')
ax.fill_between(recall, 0, precision, alpha=0.2, color='#16a34a')
ax.set_xlabel('Recall', fontweight='bold', fontsize=12)
ax.set_ylabel('Precision', fontweight='bold', fontsize=12)
ax.set_title('NLP Precision-Recall Curve', fontweight='bold', fontsize=14)
ax.legend(loc='lower left')
ax.grid(True, alpha=0.3)
ax.set_xlim([0, 1])
ax.set_ylim([0, 1.05])
plt.tight_layout()
buffer = io.BytesIO()
plt.savefig(buffer, format='png', dpi=150, bbox_inches='tight', facecolor='white')
buffer.seek(0)
charts['precision_recall_curve'] = f"data:image/png;base64,{base64.b64encode(buffer.getvalue()).decode()}"
plt.close()
except Exception as e:
logger.warning(f"Failed to generate precision-recall curve: {e}")
# 9. Prediction Confidence Distribution
try:
if hasattr(self.model, 'predict_proba'):
y_proba = self.model.predict_proba(X_test)
max_confidence = np.max(y_proba, axis=1)
fig, ax = plt.subplots(figsize=(10, 6))
# Histogram
ax.hist(max_confidence, bins=30, color='#8b5cf6', edgecolor='white', alpha=0.8)
ax.axvline(np.mean(max_confidence), color='red', linestyle='--',
lw=2, label=f'Mean: {np.mean(max_confidence):.3f}')
ax.axvline(np.median(max_confidence), color='orange', linestyle='--',
lw=2, label=f'Median: {np.median(max_confidence):.3f}')
ax.set_xlabel('Prediction Confidence', fontweight='bold', fontsize=12)
ax.set_ylabel('Frequency', fontweight='bold', fontsize=12)
ax.set_title('NLP Model Confidence Distribution', fontweight='bold', fontsize=14)
ax.legend()
ax.set_xlim([0, 1])
plt.tight_layout()
buffer = io.BytesIO()
plt.savefig(buffer, format='png', dpi=150, bbox_inches='tight', facecolor='white')
buffer.seek(0)
charts['confidence_distribution'] = f"data:image/png;base64,{base64.b64encode(buffer.getvalue()).decode()}"
plt.close()
except Exception as e:
logger.warning(f"Failed to generate confidence distribution: {e}")
# 10. Per-Class Metrics Bar Chart
try:
if self.classes is not None and len(self.classes) >= 2:
from sklearn.metrics import classification_report
# Ensure class names are strings
class_names_str = [str(c) for c in self.classes]
report = classification_report(y_test, y_pred, target_names=class_names_str, output_dict=True, zero_division=0)
fig, ax = plt.subplots(figsize=(12, 6))
class_names = [str(c)[:15] for c in self.classes]
x_pos = np.arange(len(class_names))
width = 0.25
precision = []
recall = []
f1 = []
for c in self.classes:
c_str = str(c)
if c_str in report:
precision.append(report[c_str].get('precision', 0))
recall.append(report[c_str].get('recall', 0))
f1.append(report[c_str].get('f1-score', 0))
else:
precision.append(0)
recall.append(0)
f1.append(0)
ax.bar(x_pos - width, precision, width, label='Precision', color='#2563eb', edgecolor='white')
ax.bar(x_pos, recall, width, label='Recall', color='#16a34a', edgecolor='white')
ax.bar(x_pos + width, f1, width, label='F1-Score', color='#f59e0b', edgecolor='white')
ax.set_xlabel('Class', fontweight='bold', fontsize=12)
ax.set_ylabel('Score', fontweight='bold', fontsize=12)
ax.set_title('NLP Per-Class Metrics', fontweight='bold', fontsize=14)
ax.set_xticks(x_pos)
ax.set_xticklabels(class_names, rotation=45, ha='right')
ax.legend()
ax.set_ylim([0, 1.1])
ax.grid(True, alpha=0.3, axis='y')
plt.tight_layout()
buffer = io.BytesIO()
plt.savefig(buffer, format='png', dpi=150, bbox_inches='tight', facecolor='white')
buffer.seek(0)
charts['per_class_metrics'] = f"data:image/png;base64,{base64.b64encode(buffer.getvalue()).decode()}"
plt.close()
except Exception as e:
logger.warning(f"Failed to generate per-class metrics: {e}")
# 11. Confusion Matrix Normalized (Percentage)
try:
if cm is not None and self.classes is not None and len(self.classes) >= 2:
fig, ax = plt.subplots(figsize=(8, 6))
# Normalize confusion matrix safely
row_sums = cm.sum(axis=1, keepdims=True)
row_sums[row_sums == 0] = 1 # Avoid division by zero
cm_normalized = cm.astype('float') / row_sums
cm_normalized = np.nan_to_num(cm_normalized)
# Truncate class names for display
class_labels = [str(c)[:12] for c in self.classes]
sns.heatmap(cm_normalized, annot=True, fmt='.2%', cmap='RdYlGn', ax=ax,
xticklabels=class_labels, yticklabels=class_labels,
vmin=0, vmax=1)
ax.set_xlabel('Predicted', fontweight='bold')
ax.set_ylabel('Actual', fontweight='bold')
ax.set_title('Normalized Confusion Matrix (%)', fontweight='bold', fontsize=14)
plt.tight_layout()
buffer = io.BytesIO()
plt.savefig(buffer, format='png', dpi=150, bbox_inches='tight', facecolor='white')
buffer.seek(0)
charts['confusion_matrix_normalized'] = f"data:image/png;base64,{base64.b64encode(buffer.getvalue()).decode()}"
plt.close()
except Exception as e:
logger.warning(f"Failed to generate normalized confusion matrix: {e}")
# 12. Feature Vocabulary Size Chart
try:
fig, ax = plt.subplots(figsize=(8, 6))
vocab_size = len(self.feature_names) if self.feature_names else 0
n_classes = len(self.classes) if self.classes else 0
n_test = len(y_test) if y_test is not None else 0
# Create informative metrics
metrics_display = {
'Vocabulary Size': vocab_size,
'Unique Classes': n_classes,
'Test Samples': n_test,
}
bars = ax.bar(metrics_display.keys(), metrics_display.values(),
color=['#2563eb', '#16a34a', '#f59e0b'], edgecolor='white')
for bar, val in zip(bars, metrics_display.values()):
ax.text(bar.get_x() + bar.get_width()/2, bar.get_height() + 0.5,
f'{int(val):,}', ha='center', fontweight='bold', fontsize=11)
ax.set_ylabel('Count', fontweight='bold')
ax.set_title('NLP Model Summary', fontweight='bold', fontsize=14)
plt.tight_layout()
buffer = io.BytesIO()
plt.savefig(buffer, format='png', dpi=150, bbox_inches='tight', facecolor='white')
buffer.seek(0)
charts['model_summary'] = f"data:image/png;base64,{base64.b64encode(buffer.getvalue()).decode()}"
plt.close()
except Exception as e:
logger.warning(f"Failed to generate model summary: {e}")
logger.info(f"📊 Generated {len(charts)} NLP charts: {list(charts.keys())}")
return charts
def _generate_regression_charts(
self,
y_test: np.ndarray,
y_pred: np.ndarray
) -> Dict[str, str]:
"""Generate NLP regression charts"""
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
charts = {}
# 1. Actual vs Predicted
try:
fig, ax = plt.subplots(figsize=(10, 8))
ax.scatter(y_test, y_pred, alpha=0.5, c='steelblue', edgecolor='white', s=50)
# Perfect prediction line
min_val = min(y_test.min(), y_pred.min())
max_val = max(y_test.max(), y_pred.max())
ax.plot([min_val, max_val], [min_val, max_val], 'r--', lw=2, label='Perfect Prediction')
ax.set_xlabel('Actual Values', fontweight='bold', fontsize=12)
ax.set_ylabel('Predicted Values', fontweight='bold', fontsize=12)
ax.set_title('NLP Regression: Actual vs Predicted', fontweight='bold', fontsize=14)
ax.legend()
plt.tight_layout()
buffer = io.BytesIO()
plt.savefig(buffer, format='png', dpi=150, bbox_inches='tight', facecolor='white')
buffer.seek(0)
charts['actual_vs_predicted'] = f"data:image/png;base64,{base64.b64encode(buffer.getvalue()).decode()}"
plt.close()
except Exception as e:
logger.warning(f"Failed to generate actual vs predicted: {e}")
# 2. Residuals
try:
residuals = y_test - y_pred
fig, ax = plt.subplots(figsize=(10, 6))
ax.scatter(y_pred, residuals, alpha=0.5, c='steelblue', edgecolor='white', s=50)
ax.axhline(y=0, color='red', linestyle='--', lw=2)
ax.set_xlabel('Predicted Values', fontweight='bold')
ax.set_ylabel('Residuals', fontweight='bold')
ax.set_title('Residuals Analysis', fontweight='bold', fontsize=14)
plt.tight_layout()
buffer = io.BytesIO()
plt.savefig(buffer, format='png', dpi=150, bbox_inches='tight', facecolor='white')
buffer.seek(0)
charts['residuals'] = f"data:image/png;base64,{base64.b64encode(buffer.getvalue()).decode()}"
plt.close()
except Exception as e:
logger.warning(f"Failed to generate residuals: {e}")
# 3. Error Distribution
try:
residuals = y_test - y_pred
fig, ax = plt.subplots(figsize=(10, 6))
ax.hist(residuals, bins=50, color='steelblue', edgecolor='white', alpha=0.8)
ax.axvline(x=0, color='red', linestyle='--', lw=2)
ax.set_xlabel('Prediction Error', fontweight='bold')
ax.set_ylabel('Frequency', fontweight='bold')
ax.set_title('Error Distribution', fontweight='bold', fontsize=14)
plt.tight_layout()
buffer = io.BytesIO()
plt.savefig(buffer, format='png', dpi=150, bbox_inches='tight', facecolor='white')
buffer.seek(0)
charts['error_distribution'] = f"data:image/png;base64,{base64.b64encode(buffer.getvalue()).decode()}"
plt.close()
except Exception as e:
logger.warning(f"Failed to generate error distribution: {e}")
# 4. Metrics Bar Chart
try:
fig, ax = plt.subplots(figsize=(8, 6))
metric_names = ['R² Score', 'RMSE', 'MAE']
metric_values = [self.metrics['r2'], self.metrics['rmse'], self.metrics['mae']]
colors = ['#4CAF50', '#2196F3', '#FF9800']
bars = ax.bar(metric_names, metric_values, color=colors, edgecolor='white')
ax.set_ylabel('Value', fontweight='bold')
ax.set_title('NLP Regression Metrics', fontweight='bold', fontsize=14)
for bar, val in zip(bars, metric_values):
ax.text(bar.get_x() + bar.get_width()/2, bar.get_height() + 0.01,
f'{val:.4f}', ha='center', fontweight='bold')
plt.tight_layout()
buffer = io.BytesIO()
plt.savefig(buffer, format='png', dpi=150, bbox_inches='tight', facecolor='white')
buffer.seek(0)
charts['metrics'] = f"data:image/png;base64,{base64.b64encode(buffer.getvalue()).decode()}"
plt.close()
except Exception as e:
logger.warning(f"Failed to generate metrics chart: {e}")
return charts
def predict(self, text_or_data, user_id: Optional[str] = None) -> Dict[str, Any]:
"""Make prediction on new text or combined text+structured data.
Args:
text_or_data: Either a text string OR a dict with all feature columns
(text column + numeric + categorical).
user_id: Optional user ID to load user-specific model
"""
# Load user's model if user_id is provided and model not loaded
if user_id and self.model is None:
if not self.load(user_id):
return {'success': False, 'error': f'No NLP model found for user {user_id}. Please train a model first.'}
if self.model is None or self.vectorizer is None:
return {'success': False, 'error': 'Model not trained. Train first or load a model.'}
try:
# Extract text from dict or use string directly
extra_data = None
if isinstance(text_or_data, dict):
# Dict input — extract text column and keep extra features
extra_data = text_or_data
text = str(text_or_data.get(self.text_column, ''))
if not text.strip():
# Try to find any long text value
for k, v in text_or_data.items():
if isinstance(v, str) and len(v) > 5:
text = v
break
else:
text = str(text_or_data)
# Preprocess text
processed = self.preprocess_text(text)
# Vectorize text
X = self.vectorizer.transform([processed])
# Append extra numeric/categorical features if available
if self.has_extra_features and extra_data is not None and self.extra_feature_cols:
try:
extra_vals = []
for col in self.extra_feature_cols:
val = extra_data.get(col, 0)
if col in self.extra_label_encoders:
le = self.extra_label_encoders[col]
val_str = str(val) if val is not None else '_MISSING_'
if val_str in le.classes_:
val = float(le.transform([val_str])[0])
else:
val = 0.0
else:
try:
val = float(val)
except (ValueError, TypeError):
val = 0.0
extra_vals.append(val)
extra_arr = np.array(extra_vals, dtype=float).reshape(1, -1)
# Scale numeric features
if self.extra_scaler is not None and self.numeric_cols:
n_num = len(self.numeric_cols)
extra_arr[0, :n_num] = self.extra_scaler.transform(extra_arr[0, :n_num].reshape(1, -1))[0]
extra_arr = np.nan_to_num(extra_arr, nan=0.0, posinf=0.0, neginf=0.0)
X = sp.hstack([X, sp.csr_matrix(extra_arr)]).tocsr()
except Exception as e:
logger.warning(f"Failed to add extra features for prediction: {e}")
# Predict
pred = self.model.predict(X)[0]
# Handle regression vs classification
if self.task_type == 'regression' or self.label_encoder is None:
# Regression
return {
'success': True,
'prediction': float(pred),
'confidence': None,
'probabilities': None,
'processed_text': processed[:200] + '...' if len(processed) > 200 else processed,
'task_type': 'regression',
'algorithm': self.algorithm
}
else:
# Classification
pred_label = self.label_encoder.inverse_transform([pred])[0]
# Get probabilities if available
prob = None
confidence = None
if hasattr(self.model, 'predict_proba'):
proba = self.model.predict_proba(X)[0]
prob = {self.classes[i]: float(p) for i, p in enumerate(proba)}
confidence = float(max(proba))
elif hasattr(self.model, 'decision_function'):
# For SVM
decision = self.model.decision_function(X)[0]
confidence = float(1 / (1 + np.exp(-abs(decision)))) if np.isscalar(decision) else 0.8
return {
'success': True,
'prediction': str(pred_label),
'confidence': confidence,
'probabilities': prob,
'processed_text': processed[:200] + '...' if len(processed) > 200 else processed,
'task_type': 'classification',
'algorithm': self.algorithm
}
except Exception as e:
logger.error(f"NLP prediction error: {e}")
return {'success': False, 'error': str(e)}
def _save(self, user_id: str):
"""Save model to disk"""
save_dir = os.path.join(STORAGE_PATH, user_id)
os.makedirs(save_dir, exist_ok=True)
data = {
'model': self.model,
'vectorizer': self.vectorizer,
'label_encoder': self.label_encoder,
'text_column': self.text_column,
'target_column': self.target_column,
'algorithm': self.algorithm,
'task_type': self.task_type,
'classes': self.classes,
'feature_names': self.feature_names,
'metrics': self.metrics,
'charts': self.charts, # Save charts for state persistence
'model_type': 'nlp',
# NEW: Save feature metadata for Playground
'feature_metadata': self.feature_metadata,
'numeric_cols': self.numeric_cols,
'categorical_cols': self.categorical_cols,
'original_feature_columns': self.original_feature_columns,
# Combined NLP+ML feature state
'extra_scaler': self.extra_scaler,
'extra_label_encoders': self.extra_label_encoders,
'extra_feature_cols': self.extra_feature_cols,
'has_extra_features': self.has_extra_features,
}
with open(os.path.join(save_dir, "nlp_model.pkl"), 'wb') as f:
pickle.dump(data, f)
logger.info(f"✅ NLP model saved for user {user_id}")
def load(self, user_id: str) -> bool:
"""Load model from disk"""
try:
model_path = os.path.join(STORAGE_PATH, user_id, "nlp_model.pkl")
if not os.path.exists(model_path):
return False
with open(model_path, 'rb') as f:
data = pickle.load(f)
self.model = data['model']
self.vectorizer = data['vectorizer']
self.label_encoder = data['label_encoder']
self.text_column = data['text_column']
self.target_column = data['target_column']
self.algorithm = data['algorithm']
self.task_type = data.get('task_type', 'classification')
self.classes = data['classes']
self.feature_names = data.get('feature_names', [])
self.metrics = data.get('metrics', {})
self.charts = data.get('charts', {}) # Load charts for state persistence
# NEW: Load feature metadata for Playground
self.feature_metadata = data.get('feature_metadata', [])
self.numeric_cols = data.get('numeric_cols', [])
self.categorical_cols = data.get('categorical_cols', [])
self.original_feature_columns = data.get('original_feature_columns', [])
# Combined NLP+ML feature state
self.extra_scaler = data.get('extra_scaler', None)
self.extra_label_encoders = data.get('extra_label_encoders', {})
self.extra_feature_cols = data.get('extra_feature_cols', [])
self.has_extra_features = data.get('has_extra_features', False)
logger.info(f"✅ NLP model loaded for user {user_id}")
return True
except Exception as e:
logger.error(f"❌ Failed to load NLP model: {e}")
return False
# Global instance
nlp_engine = NLPEngine()
|