5.4CYApr 27
Workplace Demands and Emotional Expression Among Early Childhood Educators: A Computational Analysis of Professional Online DiscourseHailong Jiang
Early childhood educators work in settings characterized by heavy regulation, emotional labor, staffing instability, and low pay. Although these conditions are well documented in survey-based research, less is known about how they manifest in the day-to-day language educators use in peer spaces. This study examines 7,506 posts from r/ECEProfessionals, a large online community used by early childhood education practitioners. Using a structured, computer-assisted thematic coding workflow and transformer-based emotion classification, posts were organized into 15 themes and mapped onto an adapted Job Demands-Resources (JD-R) framework. Across the corpus, 56.7% of posts centered on demands when task-level and core job demands were combined, compared with 33.6% focused on resources and 9.6% on career conditions. Emotion estimates indicated a broadly neutral tone overall; however, fear emerged as the most prominent non-neutral emotion. Demand-related categories also exhibited higher levels of sadness and anger than resource-related categories. These findings suggest that professional online discourse in early childhood education reflects a work environment structured more around strain than support. The study offers a practical framework for examining how occupational conditions are discussed and emotionally experienced in large-scale professional texts.
9.4LGFeb 7, 2025
Can Large Language Models Understand Intermediate Representations in Compilers?Hailong Jiang, Jianfeng Zhu, Yao Wan et al.
Intermediate Representations (IRs) play a critical role in compiler design and program analysis, yet their comprehension by Large Language Models (LLMs) remains underexplored. In this paper, we present an explorative empirical study evaluating the capabilities of six state-of-the-art LLMs: GPT-4, GPT-3, DeepSeek, Gemma 2, Llama 3, and Code Llama, in understanding IRs. Specifically, we assess model performance across four core tasks: control flow graph reconstruction, decompilation, code summarization, and execution reasoning. While LLMs exhibit competence in parsing IR syntax and identifying high-level structures, they consistently struggle with instruction-level reasoning, especially in control flow reasoning, loop handling, and dynamic execution. Common failure modes include misinterpreting branching instructions, omitting critical operations, and relying on heuristic reasoning rather than precise instruction-level logic. Our findings highlight the need for IR-specific enhancements in LLM design. We recommend fine-tuning on structured IR datasets and integrating control-flow-sensitive architectures to improve model effectiveness. All experimental data and source code are publicly available at
1.2DCOct 22, 2025
Serverless GPU Architecture for Enterprise HR Analytics: A Production-Scale BDaaS ImplementationGuilin Zhang, Wulan Guo, Ziqi Tan et al.
Industrial and government organizations increasingly depend on data-driven analytics for workforce, finance, and regulated decision processes, where timeliness, cost efficiency, and compliance are critical. Distributed frameworks such as Spark and Flink remain effective for massive-scale batch or streaming analytics but introduce coordination complexity and auditing overheads that misalign with moderate-scale, latency-sensitive inference. Meanwhile, cloud providers now offer serverless GPUs, and models such as TabNet enable interpretable tabular ML, motivating new deployment blueprints for regulated environments. In this paper, we present a production-oriented Big Data as a Service (BDaaS) blueprint that integrates a single-node serverless GPU runtime with TabNet. The design leverages GPU acceleration for throughput, serverless elasticity for cost reduction, and feature-mask interpretability for IL4/FIPS compliance. We conduct benchmarks on the HR, Adult, and BLS datasets, comparing our approach against Spark and CPU baselines. Our results show that GPU pipelines achieve up to 4.5x higher throughput, 98x lower latency, and 90% lower cost per 1K inferences compared to Spark baselines, while compliance mechanisms add only ~5.7 ms latency with p99 < 22 ms. Interpretability remains stable under peak load, ensuring reliable auditability. Taken together, these findings provide a compliance-aware benchmark, a reproducible Helm-packaged blueprint, and a decision framework that demonstrate the practicality of secure, interpretable, and cost-efficient serverless GPU analytics for regulated enterprise and government settings.