<?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>ESCO &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/esco/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Wed, 23 Sep 2026 00:33:13 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.1.1</generator>

<image>
	<url>https://scienmag.com/wp-content/uploads/2024/07/cropped-scienmag_ico-32x32.jpg</url>
	<title>ESCO &#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 Framework Cortex Maps Career Goals to Prerequisite-Ready Learning Paths</title>
		<link>https://scienmag.com/ai-framework-cortex-maps-career-goals-to-prerequisite-ready-learning-paths/</link>
		
		<dc:creator><![CDATA[Denise Maddox]]></dc:creator>
		<pubDate>Wed, 23 Sep 2026 00:33:13 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[AI career guidance framework]]></category>
		<category><![CDATA[AI in education]]></category>
		<category><![CDATA[AI in professional skills training]]></category>
		<category><![CDATA[AI-driven occupational mapping]]></category>
		<category><![CDATA[automated pedagogical sequencing]]></category>
		<category><![CDATA[career recommendation]]></category>
		<category><![CDATA[career transition support tools]]></category>
		<category><![CDATA[ESCO]]></category>
		<category><![CDATA[intelligent guidance systems for career changers]]></category>
		<category><![CDATA[knowledge graphs]]></category>
		<category><![CDATA[large language models]]></category>
		<category><![CDATA[large language models for education]]></category>
		<category><![CDATA[learning path generation]]></category>
		<category><![CDATA[natural language processing for career advice]]></category>
		<category><![CDATA[personalized skill development planning]]></category>
		<category><![CDATA[personalized upskilling]]></category>
		<category><![CDATA[prerequisite-aware learning path generation]]></category>
		<category><![CDATA[retrieval-augmented generation]]></category>
		<category><![CDATA[semantic matching]]></category>
		<category><![CDATA[semantic understanding of career goals]]></category>
		<category><![CDATA[sentence embeddings]]></category>
		<category><![CDATA[Shiv Nadar University]]></category>
		<category><![CDATA[skill dependencies]]></category>
		<category><![CDATA[structured career pathway recommendation]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=209161</guid>

					<description><![CDATA[Researchers have developed Cortex, an AI framework that uses retrieval-augmented generation, sentence embeddings and ESCO knowledge graphs to turn vague career aspirations into prerequisite-consistent learning paths.]]></description>
										<content:encoded><![CDATA[<p>A career changer who types “I want to interpret big data” into a conventional guidance platform is likely to be met with silence or irrelevant suggestions, because the phrase never contains the job title “Data Scientist.” A new study published in the journal Machine Learning tackles precisely this failure mode. Researchers Vatsala Ramachandran, Manasvi Vedanta and Sonia Khetarpaul of the Department of Computer Science and Engineering at Shiv Nadar Institution of Eminence in Greater Noida, India, present Cortex, an artificial intelligence framework that semantically understands what a learner actually wants to do and then builds a structured, prerequisite-aware route toward the occupation that matches that intent. The work arrives at a moment when professional skills are changing faster than most curricula can keep up, and when tools such as large language models are being tested as advisers rather than mere chat partners.</p>
<p>The core insight behind Cortex is that career guidance is really two coupled problems. The first is semantic intent understanding: translating free-form, natural language aspirations into formal occupational categories. The second is pedagogical sequencing: given a target occupation and a learner’s current skills, deciding which competencies must be acquired, in what order, and which skills depend on which. The authors argue that existing systems handle neither well. Keyword-matching recommendation engines miss the latent meaning behind a user’s words, and even when a destination is correctly identified, most platforms list relevant courses without accounting for prerequisites, producing learning paths that are tempting to click through but pedagogically incoherent. Cortex addresses both problems inside a single retrieval-augmented architecture.</p>
<p>Technically, the pipeline begins with sentence embeddings. The system encodes a user’s career statement into a dense vector using a sentence-transformer model, in this case the widely used all-mpnet-base-v2 checkpoint, and compares it against embedded representations of occupational descriptions drawn from ESCO, the European Skills, Competences, Qualifications and Occupations database. ESCO is a multilingual taxonomy maintained by the European Commission that maps thousands of occupations to the skills and competences each requires. Because the matching happens in embedding space rather than through literal keyword overlap, a user writing about “interpreting big data” lands near the Data Scientist entry even though the exact phrase appears nowhere in the taxonomy. The authors note that this dense retrieval step is what gives Cortex its tolerance for paraphrase, metaphor and vague phrasing in user input.</p>
<p>Once an occupation is identified, the second stage takes over. Cortex consults a knowledge graph constructed from ESCO’s skill relationships, stored locally in an SQLite database, to determine which skills are essential, optional or optional-grouped for the chosen career, and how those skills depend on one another. This graph is the backbone of prerequisite-aware sequencing: if skill B requires skill A, the graph encodes that edge, and any generated learning path must respect it. The researchers describe this as a form of constrained generation. Rather than letting a large language model freely invent a curriculum, the system retrieves the relevant subgraph of skills and dependencies and feeds it, together with the user profile and target occupation, into the model as grounding context.</p>
<p>The generation stage itself is where retrieval-augmented generation, or RAG, earns its name. Cortex passes the retrieved, taxonomy-constrained skill set to a large language model through carefully engineered prompts, asking it to order the skills into coherent learning sessions, add scaffolding such as motivating context and progression notes, and produce structured JSON output. Two commercial models were used in the experiments, Google’s Gemini 2.5 Flash and OpenAI’s GPT-5.2, allowing the team to compare behavior across providers. Crucially, the constraint enforcement does not rely on prompt compliance alone: after generation, the system filters the output against the ESCO database programmatically, discarding any skill the language model hallucinated that does not exist in the taxonomy. The paper includes a table of out-of-taxonomy skills produced by an unconstrained baseline, illustrating exactly the kind of drift this post-generation filtering eliminates.</p>
<p>The evaluation pipeline combines automated and statistical methods. The authors assessed whether generated paths were prerequisite-consistent, whether the skills belonged to the correct taxonomy, and whether the sequencing respected the dependency graph, using end-to-end test scenarios executed against the live system. Statistical comparisons between configurations employed standard paired tests, including McNemar’s test for correlated proportions and Wilcoxon signed-rank procedures, with effect sizes and multiple-comparison corrections drawn from the classical literature on statistical power and sequential testing. Bootstrapping was used for confidence estimation. Experimental results reported in the paper indicate that combining an LLM with a constrained RAG framework and knowledge-graph-based dependency modeling yields paths that are reliably prerequisite-aware across diverse career goals, whereas an unconstrained LLM left to its own devices frequently invents skills and violates ordering constraints.</p>
<p>The authors position Cortex within a rapidly growing literature on AI in education and career recommendation. Prior work includes knowledge-aware autoencoders for explainable recommendations, learning path recommendation based on multidimensional knowledge graphs, dense passage retrieval for open-domain question answering, and, more recently, GraphRAG-induced dual knowledge structure graphs for personalized learning path recommendation presented at AAAI 2026. Cortex’s stated scientific contribution is the end-to-end connection of these threads: semantic intent understanding through embeddings, prerequisite-aware sequencing over an official occupational taxonomy, and taxonomy-constrained LLM generation with programmatic validation. Where earlier systems typically solved one stage and assumed the rest, Cortex binds them into a single reproducible pipeline whose datasets and source code are publicly available on GitHub.</p>
<p>Why does this matter beyond the machine learning community? Labor economists and policy groups, including the authors of the World Economic Forum’s Future of Jobs report, have emphasized that reskilling at scale is becoming a structural necessity as automation and AI reshape job content. A system that can translate a vague aspiration into a concrete, ordered plan of skills, grounded in an authoritative multilingual taxonomy and validated against explicit dependencies, addresses one of the practical bottlenecks in lifelong learning: not finding content, but knowing what to learn first. The scaffolding produced alongside each path, in which the language model explains why a skill appears where it does, also speaks to a long-standing demand for explainability in recommender systems, echoing earlier work on knowledge-aware recommendation that made suggestions inspectable rather than opaque.</p>
<p>Limitations and open questions remain visible in the design. Cortex depends on the quality and coverage of ESCO, which, while extensive, reflects a particular European framing of occupations and competences; skills central to emerging roles may lag the taxonomy. The system also inherits the general fragilities of large language models, mitigated but not eliminated by the programmatic post-filtering. And while the evaluation demonstrates prerequisite consistency and taxonomy compliance, long-term studies of whether learners who follow Cortex-generated paths actually achieve their career outcomes more often would require longitudinal data the current paper does not include. The authors have nonetheless made the implementation, experimental scripts and evaluation pipeline openly accessible, and the architecture is deliberately modular: swap the embedding model, the taxonomy or the LLM, and the pipeline still functions. That modularity, as much as any single benchmark number, may determine whether frameworks like Cortex become the default plumbing behind the next generation of career guidance platforms.</p>
<p><strong>Subject of Research:</strong> Retrieval-augmented generation of prerequisite-aware, career-aligned learning paths using large language models and the ESCO skills taxonomy</p>
<p><strong>Article Title:</strong> Cortex: A Retrieval-Augmented Framework for Career-Aligned Learning Paths</p>
<p><strong>Article References:</strong> Ramachandran, V., Vedanta, M., &amp; Khetarpaul, S. (2026). Cortex: A Retrieval-Augmented Framework for Career-Aligned Learning Paths. <em>Machine Learning, 115</em>(10), Article 227. <a href="https://doi.org/10.1007/s10994-026-07160-5" rel="noopener noreferrer">https://doi.org/10.1007/s10994-026-07160-5</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s10994-026-07160-5" rel="noopener noreferrer">10.1007/s10994-026-07160-5</a></p>
<p><strong>Keywords:</strong> retrieval-augmented generation, large language models, learning path generation, knowledge graphs, career recommendation, sentence embeddings, ESCO, skill dependencies, personalized upskilling, AI in education, semantic matching, Shiv Nadar University</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">209161</post-id>	</item>
	</channel>
</rss>
