<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>maximum mean discrepancy &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/maximum-mean-discrepancy/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Wed, 23 Sep 2026 21:47:09 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.1.2</generator>

<image>
	<url>https://scienmag.com/wp-content/uploads/2024/07/cropped-scienmag_ico-32x32.jpg</url>
	<title>maximum mean discrepancy &#8211; Science</title>
	<link>https://scienmag.com</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">73899611</site>	<item>
		<title>AI Learns to Spot Struggling Students After Just Eight Classes</title>
		<link>https://scienmag.com/ai-learns-to-spot-struggling-students-after-just-eight-classes/</link>
		
		<dc:creator><![CDATA[Denise Maddox]]></dc:creator>
		<pubDate>Wed, 23 Sep 2026 21:47:09 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[adaptive learning systems]]></category>
		<category><![CDATA[coral]]></category>
		<category><![CDATA[cross-semester student outcome forecasting]]></category>
		<category><![CDATA[domain adaptation]]></category>
		<category><![CDATA[early warning systems]]></category>
		<category><![CDATA[educational data mining]]></category>
		<category><![CDATA[ensemble learning]]></category>
		<category><![CDATA[heterogeneous educational data modeling]]></category>
		<category><![CDATA[Machine learning]]></category>
		<category><![CDATA[machine learning in education]]></category>
		<category><![CDATA[maximum mean discrepancy]]></category>
		<category><![CDATA[online learning platforms student data]]></category>
		<category><![CDATA[overcoming data scarcity in education]]></category>
		<category><![CDATA[practical training score analysis]]></category>
		<category><![CDATA[real-time student performance monitoring]]></category>
		<category><![CDATA[Ridge Regression]]></category>
		<category><![CDATA[small-sample learning]]></category>
		<category><![CDATA[small-sample learning in educational datasets]]></category>
		<category><![CDATA[stacked generalization]]></category>
		<category><![CDATA[student performance prediction]]></category>
		<category><![CDATA[transfer learning]]></category>
		<category><![CDATA[university course data analysis]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=210573</guid>

					<description><![CDATA[Researchers have built a transfer-learning ensemble framework that predicts end-of-semester student performance from just the first eight practical sessions, even when course structures change completely between semesters.]]></description>
										<content:encoded><![CDATA[<p>Predicting how well a student will perform by the end of a course has long been a dream of educational data mining, but the reality is far harder than it sounds. Universities change instructors, rewrite assessment schemes, and restructure practical sessions from one semester to the next, leaving machine learning models trained on historical data struggling to cope with a target course that looks nothing like the courses they learned from. Worse, new courses and emerging online platforms often provide only a few hundred student records, a textbook small-sample problem in which even powerful models overfit badly. A new study published in Discover Artificial Intelligence by Jian Xiao, Ping Han, Rongke Zeng and Qinglong Tan tackles exactly this dual challenge of heterogeneous data structures and scarce target samples, and reports that a carefully engineered framework can outperform state-of-the-art baselines on a real cross-semester prediction task.</p>
<p>The team worked with data from a computer fundamentals course delivered across four consecutive semesters at a Chinese university, a study formally approved by Swan College of Central South University of Forestry and Technology. The first three semesters supplied 24,440 student records as the source domain, each containing 36 attributes including scores from 26 practical training sessions. The fourth semester, taught by a different instructor with a substantially revised assessment scheme, formed the target domain with only 337 records, each carrying 79 attributes covering 42 practical sessions, four regular assignments, a group project and 22 unit tests. The goal was deliberately constrained and realistic: estimate a student&#8217;s standardized comprehensive score at the end of the course using only information available from the first eight practical training sessions, avoiding any label leakage from later assessments.</p>
<p>The first pillar of the framework is a semantic feature engineering step that translates wildly different assessment architectures into a common vocabulary. Rather than feeding raw session scores into the models, the researchers computed 13 temporally grounded statistical features from those first eight sessions, identically in both domains. These include the early mean, the standard deviation of early scores, a learning trend computed as the difference between the average of sessions five through eight and sessions one through four, counts of zero and non-perfect scores, early maximum and minimum, score range, pass rate, excellence rate, completion rate, the coefficient of variation, and a stability index defined as an exponential function of relative score dispersion. Because these definitions depend only on the first eight sessions, which exist in every semester, the resulting 13-dimensional feature spaces remain semantically comparable even though source courses had 26 sessions and the target course had 42 plus extra components.</p>
<p>Even with shared semantics, subtle distribution shifts persist across semesters because of differences in grading standards, assessment difficulty and student populations. The framework therefore applies a two-stage adaptation pipeline chosen specifically for the statistics of educational behavioral data. The authors observed, through a feature correlation heatmap, that the engineered features are strongly interdependent: standard deviation, score range and coefficient of variation all measure dispersion, while early mean, excellence rate and pass rate all reflect overall level. Applying per-feature corrections independently would distort these relationships. Instead, CORAL, short for CORrelation ALignment, first matches the covariance matrices of the source and target distributions, preserving the global correlation structure. A second stage then applies Maximum Mean Discrepancy, or MMD, guided per-feature weighting to fine-tune the residual mismatch, upweighting features whose post-CORAL discrepancies are larger.</p>
<p>The second pillar is a deliberately heterogeneous ensemble of 30 base models spanning five algorithmic families: eight tree-based variants drawn from Random Forest, Gradient Boosting and Extra Trees, six kernel-based Support Vector Regression variants, six linear models including Ridge, Lasso and Elastic Net, five multi-layer perceptron regressors with hidden architectures ranging from 32 to 128 neurons, and five K-Nearest Neighbor regressors with varied neighbor counts and distance metrics. This breadth of inductive bias means the ensemble captures complementary patterns, from nonlinear feature interactions to local similarity structure. The third pillar, and according to the ablation study the most critical one, is how these 30 predictions are fused: a Ridge-regularized stacking meta-learner treats the base predictions as meta-features and learns a weighted linear combination by minimizing regularized squared error, with the L2 penalty preventing the meta-learner from overfitting the few hundred target-domain samples.</p>
<p>Evaluation was designed to be rigorous. The team used 5-fold cross-validation with an 80/20 train/test split per fold on the 337 target records, yielding roughly 270 training and 67 test samples per fold, and repeated the procedure under 10 random seeds for a total of 50 fold-level trials. Hyperparameters were fixed in advance and never tuned on the target domain, and all distribution alignment was computed exclusively on training folds. The results were striking: the proposed framework achieved an R-squared of 0.5425 and a mean absolute error of 0.0851 on the target-domain test set, the best across all tested models, beating the strongest baseline, TabNet, by 4.09 percentage points in R-squared, an improvement the authors report as statistically significant under a paired t-test across the 50 trials.</p>
<p>The baseline comparisons carried their own lessons. Among individual learners, TabNet led with an R-squared of 0.5016, followed by Support Vector Regression trained on the target domain and LightGBM, whose histogram-based splitting proved efficient for tabular data. More dramatically, the domain adversarial neural network, or DANN, and a naive simple-averaging ensemble of the 30 base models both produced negative R-squared values, meaning worse than simply predicting the mean. The authors attribute DANN&#8217;s collapse to its gradient reversal layer destabilizing training when source and target distributions differ substantially in dimensionality and scale, while the failure of uniform averaging confirms that poorly transferring base models inject noise unless an adaptive mechanism learns to suppress them.</p>
<p>An ablation study quantified each component&#8217;s contribution by disabling modules one at a time under the same 50-trial protocol. Removing Ridge-regularized stacking in favor of simple averaging caused catastrophic degradation, confirming it as the single most important element. Cutting the ensemble down to only the eight tree-based models produced the second-largest drop, validating the value of cross-family diversity. Replacing the 13 engineered features with raw early-session scores moderately reduced accuracy and destabilized Spearman correlation. Interestingly, removing either CORAL or the MMD weighting did not degrade R-squared, which the authors attribute to semantically aligned label definitions, already-comparable features, and implicit compensation by the stacking layer, though the adaptation pipeline still reduced the overall cross-domain MMD by 26.92 percent, from 0.1230 to 0.0882, improving theoretical transferability for larger domain gaps.</p>
<p>Feature importance analysis added an intriguing practical finding. Using a random forest regressor to rank the engineered features, the team found a highly skewed distribution in which the excellence rate, the proportion of the first eight sessions scored at 90 or above, accounted for 73.88 percent of the importance among the top five features. Early mean, learning trend, coefficient of variation and stability index contributed the remainder. In plain terms, the strongest signal of final academic performance is not a single brilliant session but consistent early excellence, a conclusion that instructors designing early-warning systems can act on even without the full model.</p>
<p>The authors are candid about limitations: the target domain is a single semester of 337 students taught by one instructor, raising generalizability questions, although the 24,440-record source domain, the substantial structural differences between semesters, and the 50-trial evaluation protocol strengthen confidence. The framework&#8217;s promise is clear nonetheless. By combining a shared behavioral vocabulary, covariance-aware transfer and regularized ensemble fusion, it offers a practical template for educational early-warning systems in exactly the data-scarce settings where they are most needed, letting instructors identify at-risk students after just eight sessions, and future work extending validation to other courses, institutions and educational levels could determine how broadly this approach transforms learning analytics.</p>
<p><strong>Subject of Research:</strong> Machine learning prediction of student academic performance across semesters using transfer learning and stacked ensemble methods</p>
<p><strong>Article Title:</strong> A semantic-aligned stacked ensemble framework for cross-semester student performance prediction</p>
<p><strong>Article References:</strong> Xiao, J., Han, P., Zeng, R., &amp; Tan, Q. (2026). A semantic-aligned stacked ensemble framework for cross-semester student performance prediction. <em>Discover Artificial Intelligence, 6</em>(1), Article 1228. <a href="https://doi.org/10.1007/s44163-026-02328-3" rel="noopener noreferrer">https://doi.org/10.1007/s44163-026-02328-3</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s44163-026-02328-3" rel="noopener noreferrer">10.1007/s44163-026-02328-3</a></p>
<p><strong>Keywords:</strong> educational data mining, transfer learning, ensemble learning, student performance prediction, CORAL, maximum mean discrepancy, stacked generalization, domain adaptation, small-sample learning, Ridge regression, early-warning systems, machine learning</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">210573</post-id>	</item>
	</channel>
</rss>
