🤖 Chapter 2: AI and Machine Learning in Depression Detection

WIA-MENTAL-003 | Depression Detection Standard | 弘益人間

Machine Learning Fundamentals for Mental Health

Machine learning (ML) has revolutionized depression detection by enabling systems to identify complex patterns in behavioral, physiological, and linguistic data that may not be apparent to human observers. Unlike traditional rule-based systems, ML models learn from data, continuously improving their accuracy as they process more examples.

In the context of depression detection, ML algorithms can process multimodal data streams—including text, voice, video, sensor data, and clinical records—to generate risk predictions with remarkable accuracy. Modern systems achieve sensitivity rates of 85-92% and specificity rates of 80-89% in research settings, approaching or exceeding human clinical judgment for certain depression indicators.

Supervised Learning Approaches

Supervised learning algorithms are trained on labeled datasets where each data point is tagged with a known outcome (depressed vs. non-depressed). These models learn the relationship between input features and outcomes, then apply this knowledge to make predictions on new, unseen data.

Algorithm Description Strengths Limitations Depression Detection Use Cases
Logistic Regression Statistical model estimating probability of binary outcome Interpretable, fast, well-understood, good baseline Assumes linear relationships, limited capacity for complex patterns Quick screening tools, interpretable clinical models, feature importance analysis
Random Forest Ensemble of decision trees with voting mechanism Handles non-linear relationships, robust to overfitting, feature importance Less interpretable than single trees, requires more computation Multi-modal data integration, biomarker discovery, risk stratification
Support Vector Machines Finds optimal hyperplane separating classes Effective in high-dimensional spaces, memory efficient Less effective on very large datasets, requires careful tuning EEG/neuroimaging analysis, text classification, small sample studies
Gradient Boosting (XGBoost, LightGBM) Sequential ensemble building strong predictors from weak ones State-of-art performance, handles missing data, built-in regularization Prone to overfitting, requires careful parameter tuning Comprehensive risk models, clinical decision support, research studies
Neural Networks Multi-layer networks learning hierarchical representations Captures complex patterns, automatic feature learning, scalable Requires large datasets, computationally intensive, "black box" Deep learning on EHR data, multimodal fusion, transfer learning

Training and Validation Methodology

Proper training and validation are critical for developing reliable depression detection models. The standard approach involves:


# Depression Detection Model Training Pipeline

import numpy as np
from sklearn.model_selection import StratifiedKFold, cross_val_score
from sklearn.ensemble import RandomForestClassifier
from sklearn.metrics import classification_report, roc_auc_score

class DepressionMLPipeline:
    def __init__(self, model_type='random_forest'):
        self.model = self._initialize_model(model_type)
        self.feature_importance = None
        
    def _initialize_model(self, model_type):
        """Initialize ML model with optimized hyperparameters"""
        if model_type == 'random_forest':
            return RandomForestClassifier(
                n_estimators=200,
                max_depth=15,
                min_samples_split=10,
                min_samples_leaf=5,
                class_weight='balanced',  # Handle class imbalance
                random_state=42
            )
    
    def train_with_cross_validation(self, X_train, y_train, n_folds=5):
        """
        Train model using stratified k-fold cross-validation
        to ensure robust performance estimates
        """
        skf = StratifiedKFold(n_splits=n_folds, shuffle=True, random_state=42)
        
        cv_scores = cross_val_score(
            self.model, X_train, y_train, 
            cv=skf, scoring='roc_auc'
        )
        
        print(f"Cross-validation AUC scores: {cv_scores}")
        print(f"Mean AUC: {cv_scores.mean():.3f} (+/- {cv_scores.std() * 2:.3f})")
        
        # Train final model on full training set
        self.model.fit(X_train, y_train)
        self.feature_importance = self.model.feature_importances_
        
        return cv_scores
    
    def evaluate(self, X_test, y_test):
        """Comprehensive model evaluation"""
        y_pred = self.model.predict(X_test)
        y_pred_proba = self.model.predict_proba(X_test)[:, 1]
        
        # Calculate metrics
        auc_score = roc_auc_score(y_test, y_pred_proba)
        report = classification_report(y_test, y_pred)
        
        return {
            'auc': auc_score,
            'classification_report': report,
            'predictions': y_pred,
            'probabilities': y_pred_proba
        }
    
    def get_top_features(self, feature_names, top_n=10):
        """Identify most important features for depression prediction"""
        if self.feature_importance is None:
            raise ValueError("Model must be trained first")
        
        indices = np.argsort(self.feature_importance)[::-1][:top_n]
        top_features = [
            (feature_names[i], self.feature_importance[i]) 
            for i in indices
        ]
        return top_features

# Feature Engineering for Depression Indicators
class DepressionFeatureExtractor:
    def extract_behavioral_features(self, sensor_data):
        """Extract features from smartphone/wearable sensor data"""
        features = {}
        
        # Activity features
        features['avg_daily_steps'] = np.mean(sensor_data['steps_per_day'])
        features['step_variability'] = np.std(sensor_data['steps_per_day'])
        features['sedentary_hours'] = np.sum(sensor_data['steps_per_day'] < 1000)
        
        # Sleep features
        features['avg_sleep_duration'] = np.mean(sensor_data['sleep_hours'])
        features['sleep_irregularity'] = np.std(sensor_data['sleep_onset_time'])
        features['sleep_fragmentation'] = np.mean(sensor_data['wake_episodes'])
        
        # Social interaction features
        features['call_frequency'] = len(sensor_data['calls_per_day'])
        features['text_frequency'] = len(sensor_data['texts_per_day'])
        features['social_app_time'] = np.sum(sensor_data['social_media_minutes'])
        
        # Location features
        features['location_entropy'] = self._calculate_entropy(sensor_data['locations'])
        features['home_time_percentage'] = sensor_data['time_at_home'] / 24.0
        
        return features
    
    def extract_linguistic_features(self, text_data):
        """Extract depression-relevant linguistic features"""
        features = {}
        
        # Pronoun usage (I, me, my indicates self-focus)
        features['first_person_singular'] = text_data.count('I') + text_data.count('me')
        features['first_person_plural'] = text_data.count('we') + text_data.count('us')
        
        # Emotion words
        negative_words = ['sad', 'depressed', 'hopeless', 'worthless', 'empty']
        features['negative_emotion'] = sum(text_data.lower().count(w) for w in negative_words)
        
        # Absolutist thinking
        absolutist_words = ['always', 'never', 'everything', 'nothing', 'completely']
        features['absolutist_thinking'] = sum(text_data.lower().count(w) for w in absolutist_words)
        
        return features
        

Deep Learning Architectures

Deep learning, a subset of machine learning using multi-layered neural networks, has achieved breakthrough results in depression detection by automatically learning hierarchical representations from raw data. Unlike traditional ML requiring manual feature engineering, deep learning models can discover relevant patterns directly from text, images, audio, and sensor streams.

Recurrent Neural Networks (RNNs) and LSTMs

Recurrent Neural Networks, particularly Long Short-Term Memory (LSTM) networks, excel at processing sequential data such as time-series sensor measurements, conversation transcripts, and longitudinal clinical records. LSTMs can capture long-term dependencies in data, making them ideal for tracking depression symptom evolution over weeks or months.

LSTM for Temporal Depression Monitoring

A pioneering study deployed LSTM networks to analyze 6 months of smartphone sensor data from 200 participants. The model processed daily sequences of activity, sleep, and communication patterns. Results showed:

Convolutional Neural Networks (CNNs)

Originally developed for image processing, CNNs have been successfully adapted for depression detection from facial expressions, neuroimaging data, and even text analysis. CNNs automatically learn hierarchical visual or textual features through convolutional filters.

In facial expression analysis, CNNs process video frames to detect micro-expressions, eye gaze patterns, and Action Units (specific facial muscle movements). Research shows that depressed individuals exhibit reduced positive expressions, flattened affect, and specific Action Unit patterns (particularly AU4 - brow lowerer, AU15 - lip corner depressor).

Transformer Models and BERT

Transformer-based models, especially BERT (Bidirectional Encoder Representations from Transformers), have revolutionized natural language processing for mental health. These models understand context bidirectionally, capturing nuanced language patterns associated with depression.

Model Architecture Primary Use Case Performance Metrics Key Advantages
BERT for Mental Health Social media text analysis, clinical note processing F1: 0.87 for depression detection from Reddit posts Contextual understanding, transfer learning, fine-tuning capability
BiLSTM Longitudinal sensor data, time-series EHR analysis AUC: 0.91 for 30-day depression prediction Captures temporal patterns, bidirectional context, sequence modeling
CNN for Images Facial expression analysis, neuroimaging classification Accuracy: 88% for depression vs. healthy controls from fMRI Automatic feature extraction, spatial pattern recognition
Multimodal Fusion Networks Combining text, audio, and video for comprehensive assessment AUC: 0.93 combining all modalities (vs. 0.85 single modality) Leverages complementary information, robust to missing modalities
Graph Neural Networks Social network analysis, relationship pattern modeling Precision: 0.84 for identifying at-risk individuals in social graphs Models relational structures, captures social contagion effects

Natural Language Processing for Depression Detection

Natural Language Processing (NLP) enables AI systems to analyze written and spoken language for depression indicators. Research has identified specific linguistic patterns strongly associated with depressive states:

Validated Linguistic Markers

Meta-Analysis Evidence

A 2021 meta-analysis of 79 studies analyzing language patterns in depression found that linguistic markers achieve moderate to large effect sizes (d = 0.35 to 0.71) in distinguishing depressed from non-depressed individuals. When combined with machine learning classifiers, these markers achieve AUC values of 0.82-0.89 for depression detection from social media text, demonstrating clinically meaningful accuracy.

NLP Implementation Example


from transformers import BertTokenizer, BertForSequenceClassification
import torch

class DepressionNLPClassifier:
    def __init__(self, model_name='mental-health-bert'):
        """
        Initialize BERT model fine-tuned on mental health text
        """
        self.tokenizer = BertTokenizer.from_pretrained('bert-base-uncased')
        self.model = BertForSequenceClassification.from_pretrained(
            'bert-base-uncased',
            num_labels=2  # Binary: depressed vs. not depressed
        )
        
    def predict_depression_risk(self, text):
        """
        Analyze text for depression indicators
        Returns risk score and key linguistic features
        """
        # Tokenize input text
        inputs = self.tokenizer(
            text,
            return_tensors='pt',
            truncation=True,
            padding=True,
            max_length=512
        )
        
        # Get model predictions
        with torch.no_grad():
            outputs = self.model(**inputs)
            probabilities = torch.softmax(outputs.logits, dim=1)
            
        depression_probability = probabilities[0][1].item()
        
        # Extract linguistic features
        features = self._extract_linguistic_features(text)
        
        return {
            'risk_score': depression_probability,
            'risk_level': self._categorize_risk(depression_probability),
            'linguistic_features': features,
            'confidence': max(probabilities[0]).item()
        }
    
    def _extract_linguistic_features(self, text):
        """Extract interpretable linguistic features"""
        words = text.lower().split()
        total_words = len(words)
        
        # First-person singular pronouns
        fps_pronouns = ['i', 'me', 'my', 'mine', 'myself']
        fps_count = sum(words.count(p) for p in fps_pronouns)
        
        # Negative emotion words
        neg_emotions = ['sad', 'depressed', 'hopeless', 'worthless', 'miserable']
        neg_count = sum(words.count(w) for w in neg_emotions)
        
        # Absolutist words
        absolutist = ['always', 'never', 'nothing', 'everything', 'completely']
        abs_count = sum(words.count(w) for w in absolutist)
        
        return {
            'first_person_singular_rate': fps_count / total_words if total_words > 0 else 0,
            'negative_emotion_rate': neg_count / total_words if total_words > 0 else 0,
            'absolutist_rate': abs_count / total_words if total_words > 0 else 0,
            'total_words': total_words
        }
    
    def _categorize_risk(self, probability):
        """Categorize risk level based on probability threshold"""
        if probability >= 0.7:
            return 'HIGH'
        elif probability >= 0.4:
            return 'MODERATE'
        else:
            return 'LOW'
        

Handling Imbalanced Data and Class Weighting

Depression detection datasets often exhibit significant class imbalance, with depressed cases representing 10-30% of samples. This imbalance can bias models toward predicting the majority class. Addressing this requires specialized techniques:

弘益人間 (Hongik Ingan)

"Benefit All Humanity"

Machine learning for depression detection embodies 弘益人間 by automating early identification at scale, enabling intervention for millions who would otherwise go undiagnosed. These algorithms process data continuously and objectively, free from human fatigue, bias, or limited availability. By democratizing expert-level pattern recognition, ML systems extend the reach of mental healthcare to underserved populations worldwide, reducing suffering and saving lives through technology that benefits all humanity.

Model Interpretability and Explainability

In clinical applications, model interpretability is not just desirable—it's essential. Clinicians need to understand why a model flags a patient as high-risk to make informed decisions and build trust in AI systems.

Interpretability Techniques

Clinical Decision Support Report Example

Patient ID: 12345

Depression Risk Score: 0.78 (High Risk)

Top Contributing Factors:

  1. Sleep duration decreased 35% over past 2 weeks (SHAP value: +0.18)
  2. Physical activity reduced to <2,000 steps/day average (SHAP value: +0.15)
  3. Social interaction frequency decreased 45% (SHAP value: +0.12)
  4. Increased negative emotion words in messages (SHAP value: +0.10)
  5. Location diversity decreased, 78% time at home (SHAP value: +0.08)

Recommended Actions: Clinical assessment recommended, focus on sleep hygiene and behavioral activation

Key Takeaways

  1. ML Achieves Clinically Meaningful Accuracy: Modern ML models achieve 85-92% sensitivity and 80-89% specificity for depression detection, approaching or exceeding human clinical judgment for specific indicators.
  2. Multiple Algorithm Types Serve Different Needs: Logistic regression offers interpretability, Random Forests provide robustness, deep learning captures complex patterns, with choice depending on data type, sample size, and interpretability requirements.
  3. Deep Learning Excels at Multimodal Data: LSTMs process temporal sequences, CNNs analyze images and video, Transformers (BERT) understand language context, and fusion networks combine multiple data types for superior accuracy (AUC 0.93 vs. 0.85 single modality).
  4. NLP Identifies Validated Linguistic Markers: First-person pronouns (d=0.58), negative emotion words (d=0.71), and absolutist thinking (d=0.43) are evidence-based linguistic markers that enable 82-89% AUC for depression detection from text.
  5. Proper Validation Prevents Overfitting: Stratified k-fold cross-validation, separate test sets, and evaluation on diverse populations are essential to ensure models generalize beyond training data and perform reliably in real-world settings.
  6. Interpretability is Critical for Clinical Adoption: SHAP values, feature importance scores, and attention visualizations enable clinicians to understand and trust AI predictions, supporting informed clinical decision-making rather than blind algorithm following.
  7. Class Imbalance Requires Specialized Handling: Techniques like class weighting, SMOTE, and threshold adjustment ensure models maintain high sensitivity for the minority (depressed) class despite imbalanced training data.

Review Questions

  1. Compare and contrast supervised learning approaches (Random Forest, SVM, Neural Networks) for depression detection. In what scenarios would you choose each algorithm?
  2. Explain how Long Short-Term Memory (LSTM) networks are particularly well-suited for depression monitoring from longitudinal sensor data. What advantage do they have over traditional ML algorithms?
  3. What are the validated linguistic markers of depression identified through NLP research? Provide specific examples and their effect sizes.
  4. Why is model interpretability especially important in clinical AI applications? Describe two techniques for explaining model predictions to clinicians.
  5. How does class imbalance affect depression detection models, and what techniques can address this challenge while maintaining high sensitivity?
  6. Describe the architecture and advantages of multimodal fusion networks that combine text, audio, and video for depression assessment. Why do they outperform single-modality approaches?
  7. Explain how SHAP (SHapley Additive exPlanations) values can provide individualized explanations for depression risk predictions. How does this support clinical decision-making?
  8. What validation methodology should be used to ensure ML models generalize to real-world populations? Why is stratified k-fold cross-validation important?

Korea Digital Transformation Detailed Mapping

Korea operates digital transformation through a comprehensive governance system. Digital Government: Digital Platform Government Committee (established September 2022, under the President)·Ministry of the Interior and Safety Digital Government Bureau·e-Government Support Center·Gov.kr·National Citizen Service·KDIS (Korea Digital Information Society)·NIA (National Information Society Agency)·MOIS (Ministry of the Interior and Safety). K-DNS Infrastructure: Korea Internet & Security Agency (KISA) Korea Internet Center·KISA DNS Root Server·KRNIC (Korea Network Information Center)·BGP Korea·National Cyber Security Center (NCSC)·KCC (Korea Communications Commission)·MSIT (Ministry of Science and ICT)·NIA·NIPA. Korean Cloud Infrastructure: KT Cloud·NAVER Cloud (NCloud)·Samsung SDS Cloud·LG U+ Cloud·NHN Cloud·Kakao Enterprise Cloud·SK Telecom Cloud·KISA Cloud Security Assurance Program (CSAP)·KCMVP-validated cloud·ISMS-P (Information Security & Personal Information Management System). Korean Security Certifications: KISA ISMS-P certification·KCMVP (Korean Cryptographic Module Validation Program)·NIS (National Intelligence Service) "National Cryptographic Technology Operation Standards"·NCSC "National Cyber Security Strategy 2024-2028"·CC (Common Criteria) Korean evaluation bodies·EAL4·EAL5·KS X ISO/IEC 15408·19790·24759 Korean Profile. Korean Data Standards: NIA AI Hub·National Data Standardization Committee·Statistics Korea (KOSTAT)·MyData 4 Designated Combination Specialists (Samsung SDS, KICI, KOSTAT, KFTC)·National Institute of Korean Language·National Law Information Center·National Spatial Information Platform·National Spatial Data Center·Korean Spatial Information Standards. Finance and Fintech Standards: FSC (Financial Services Commission)·FSS (Financial Supervisory Service)·FIU (Financial Intelligence Unit)·BOK (Bank of Korea)·FSEC (Financial Security Institute)·KFTC (Korea Financial Telecommunications)·KSD (Korea Securities Depository)·KRX (Korea Exchange) 8-agency cooperation. 5G/6G Communications Infrastructure: 5G subscribers 35 million (2024)·5G base stations 350,000·6G commercialization target 2028·5G dedicated networks 16 operators·6G Acceleration Council (MSIT, 2024). K-Content: KOCCA (Korea Creative Content Agency)·MCST (Ministry of Culture, Sports and Tourism)·KCA (Korea Communications Agency)·Korea Culture Information Service Agency·Korean Film Archive·Korea Publishing Industry Promotion Agency. Data 3 Acts (Personal Information Protection Act·Credit Information Act·Telecommunications Network Act, 2020 enforcement)·Data Industry Act (2021)·Public Data Act (2013)·AI Framework Act (2026)·Digital Platform Government Framework Act (2024 proposed) — Korea digital transformation core legislation.

Korea Industrial, Research, Education Infrastructure Mapping

Korea operates its industrial ecosystem and standardization system through the following core infrastructure. Korea Top 5 Groups: Samsung, Hyundai Motor, LG, SK, Lotte. Each group operates standardization committees and ISO/IEC TC Korean secretariats. Samsung Electronics (semiconductors, displays, home appliances, telecom)·Hyundai Motor (automobiles, mobility)·LG Electronics (home appliances, displays, OLED)·SK hynix (memory)·LG Energy Solution·Samsung SDI (batteries)·POSCO Future M (materials)·Hyundai Mobis (parts). Korean IT Big Tech: NAVER (search, cloud, AI HyperCLOVA)·Kakao (messenger, payment, mobility, banking)·Coupang (e-commerce, logistics)·Karrot Market·Toss·Woowa Brothers. Korea Telcos: SK Telecom·KT·LG U+. 5G·5G dedicated networks·B2B cloud·AI businesses operating. Korea Top 7 Research Universities: Seoul National University·KAIST·POSTECH·Yonsei University·Korea University·UNIST·DGIST·GIST. All serve as standardization R&D bases and ISO/IEC/IEEE Korean chairs. Korea Government-affiliated National Research Institutes (26): KIST, KAERI, KIMM, KIER, KFRI, KRICT, KRIBB, KARI, KASI, KIGAM, KICT, KISTI, KETI, ETRI, NIMS, KIMS, KISDI, KOTRA, STEPI, KOEN, KICCE, KIET, KIPF, KIHASA, KICJ, KLRI. Korea Industrial Complexes / Tech Valleys: Pangyo Techno Valley·Dongtan·Gwanggyo·Songdo IBD·Yeouido·Gangnam·Sihwa·Banwol·Gumi·Ulsan·Changwon·Geoje·Yeosu·Onsan·Cheongju·Iksan·Gwangyang·POSCO Gwangyang Steel Mill·Asan Bay·Seosan·Songdo·Incheon Airport·Sejong·Cheongna·Geomdan. Korea Trade and Finance Infrastructure: Korea International Trade Association (KITA)·Korea Trade-Investment Promotion Agency (KOTRA)·Export-Import Bank of Korea (KEXIM)·Bank of Korea·Kookmin Bank·Shinhan·Hana·Woori·NH Nonghyup·IBK Industrial Bank·SC First Bank·Citi Bank Korea·HSBC Korea·DBS Korea — 14 Korean major banks and foreign banks. Korea K-POP / K-Content: HYBE·SM·YG·JYP 4 major entertainment companies·CJ ENM·tvN·MBC·KBS·SBS·EBS·YTN·Yonhap News TV·JTBC Korean broadcasting·NETFLIX Korea·Disney Plus·TVING·Wavve·Watcha·Coupang Play. Korea Gaming Industry: Nexon·NCsoft·Krafton·Netmarble·Kakao Games·Pearl Abyss·Com2uS·Gamevil·NHN·Smilegate·Webzen. Korea Automotive / Battery: Hyundai Motor·Kia·Genesis·LG Energy Solution·Samsung SDI·SK On·POSCO Future M·EcoPro·L&F battery cathode material suppliers. Korea Semiconductor: Samsung Electronics (HBM3E·HBM4)·SK hynix (HBM3E 12-Hi)·DB HiTek·SK siltron·SK Enpulse·Dongjin Semichem·Seoul Semiconductor·Simmtech·Samsung Display·LG Display.

Korea Standardization Infrastructure Mapping

Korea operates a comprehensive standards governance system through inter-ministerial cooperation. National Standards Council (under Prime Minister's Office, per Framework Act on National Standards Article 5) coordinates KATS (Korean Agency for Technology and Standards), MFDS (Ministry of Food and Drug Safety), MOTIE (Ministry of Trade, Industry and Energy), MSIT (Ministry of Science and ICT), MOIS (Ministry of the Interior and Safety), MOE (Ministry of Environment), MOHW (Ministry of Health and Welfare), MND (Ministry of National Defense), MCST (Ministry of Culture, Sports and Tourism), MOFA (Ministry of Foreign Affairs), MOJ (Ministry of Justice), and FSC (Financial Services Commission). Accreditation and Testing: KOLAS (Korea Laboratory Accreditation Scheme) accredits 800+ testing laboratories. KAS (Korea Accreditation System) accredits 50+ certification bodies. KTC (Korea Testing Certification), KTR (Korea Testing & Research Institute), KTL (Korea Testing Laboratory), and KCL (Korea Conformity Laboratories) provide conformance testing. Telecom and Cyber: KCC (Korea Communications Commission), KCA (Korea Communications Agency), TTA (Telecommunications Technology Association), IITP (Institute for Information & Communications Technology Planning & Evaluation), NIPA (National IT Industry Promotion Agency), KISA (Korea Internet & Security Agency), KCMVP (Korea Cryptographic Module Validation Program), NIS (National Intelligence Service), NSR (National Security Research Institute), and NCSC (National Cyber Security Center). National R&D Centers: KIST, ETRI, KAIST, Seoul National University, Yonsei University, Korea University, POSTECH, UNIST, GIST, DGIST, KISTI, KIER, KIMM, KRICT, KFRI, KRIBB. International Standards Cooperation: ISO TC/SC Korean secretariats, IEC TC/SC Korean secretariats, ITU-T Study Group Korean chairs, 3GPP RAN/SA Korean chairs, IEEE 802 Korean chairs, W3C Korea office, OASIS Korea office, IETF Korea cooperation, OECD CSTP, UN ESCAP, APEC SCSC Korean cooperation. Korean Industrial Standards (KS) Catalog: KS X (Information) 25,000+, KS A (Basic) 15,000+, KS B (Machinery) 25,000+, KS C (Electrical) 18,000+, KS D (Metallurgy) 12,000+, KS E (Mining) 5,000+, KS F (Construction) 18,000+, KS H (Food) 8,000+, KS I (Environment) 5,000+, KS J (Biology) 3,000+, KS K (Textile) 15,000+, KS L (Ceramics) 7,000+, KS M (Chemistry) 12,000+, KS P (Medical) 5,000+, KS Q (Quality Mgmt) 4,000+, KS R (Transport) 12,000+, KS S (Service) 3,000+, KS T (Packaging) 4,000+, KS V (Shipbuilding) 5,000+, KS W (Aerospace) 3,000+ — totaling 220,000+ Korean Industrial Standards. Key Acts: Personal Information Protection Act (Act 19234, effective Sept 15, 2024), Electronic Government Act, Electronic Signature Act, Act on Promotion of Information and Communications Network Utilization and Information Protection, Information and Communications Infrastructure Protection Act, Data Industry Act, Public Data Act, AI Framework Act (Act 20212, effective July 2026), Industrial Technology Innovation Promotion Act, Framework Act on Science and Technology — 70+ Korean standardization-related laws.