<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <title>DSpace Collection: Dissertation</title>
  <link rel="alternate" href="http://dspace.dtu.ac.in:8080/jspui/handle/repository/20350" />
  <subtitle>Dissertation</subtitle>
  <id>http://dspace.dtu.ac.in:8080/jspui/handle/repository/20350</id>
  <updated>2026-07-25T11:53:00Z</updated>
  <dc:date>2026-07-25T11:53:00Z</dc:date>
  <entry>
    <title>ASTRUCTURAL AND STATEFUL APPROACH TO RETRIEVAL AUGMENTED GENERATION FOR CONTEXTUAL REASONING INKNOWLEDGE-INTENSIVE SYSTEMS</title>
    <link rel="alternate" href="http://dspace.dtu.ac.in:8080/jspui/handle/repository/23024" />
    <author>
      <name>PRAKASH, KRISHNA</name>
    </author>
    <author>
      <name>Meena, Shweta (SUPERVISOR)</name>
    </author>
    <id>http://dspace.dtu.ac.in:8080/jspui/handle/repository/23024</id>
    <updated>2026-07-06T09:18:24Z</updated>
    <published>2026-05-01T00:00:00Z</published>
    <summary type="text">Title: ASTRUCTURAL AND STATEFUL APPROACH TO RETRIEVAL AUGMENTED GENERATION FOR CONTEXTUAL REASONING INKNOWLEDGE-INTENSIVE SYSTEMS
Authors: PRAKASH, KRISHNA; Meena, Shweta (SUPERVISOR)
Abstract: Systems that are built around large language models(LLMs) have to answer questions whose&#xD;
answers are provided by the model itself. Its accuracy degrades on hierarchical collections,&#xD;
which are revised over time, and that demand exact citations.&#xD;
This thesis develops a framework for such collections in two parts. The first part is a structural&#xD;
pipeline that respects the hierarchy of the source documents at every stage. It splits text into&#xD;
sections and clause boundaries, attaches citation-grade metadata to each chunk, runs a dense&#xD;
neural retriever and a sparse term-matching retriever in parallel, fuses their ranked lists, and&#xD;
reranks with A cross-encoder that uses the metadata as an extra signal, and constrains the&#xD;
language model to a fixed output format. The second part is a stateful agentic layer that wraps a&#xD;
lightweight controller around the structural pipeline. The controller maintains a working memory&#xD;
across retrieval calls, reflecting on the evidence collected so far, decides whether the evidence is&#xD;
sufficient, and issues a refined query when it is not.&#xD;
The structural pipeline is implemented and evaluated on a corpus of central Indian statutes&#xD;
against a benchmark of two hundred test queries whose ground-truth applicable provisions were&#xD;
prepared by a practising domain expert. The pipeline identifies the primary applicable citation&#xD;
in 94.0% of test queries (188 of 200; 95% Wilson interval [89.8%, 96.5%]) and returns the&#xD;
full applicable citation set in 82.0% (164 of 200; 95% Wilson interval [76.1%, 86.7%]). Every&#xD;
neural component is used without domain-specific fine-tuning, so the reported numbers reflect&#xD;
the pipeline’s behaviour in the absence of any domain-adaptation effect. The stateful agentic&#xD;
controller is presented as a fully specified design, composed from methods already published in&#xD;
the agentic and self-reflective retrieval literature; its end-to-end empirical evaluation is left for&#xD;
subsequent work.</summary>
    <dc:date>2026-05-01T00:00:00Z</dc:date>
  </entry>
  <entry>
    <title>LARGE LANGUAGE MODEL DRIVEN AGENTIC FRAME WORK FOR ADAPTIVE RETRIEVAL AND MULTI-HOP REASONING</title>
    <link rel="alternate" href="http://dspace.dtu.ac.in:8080/jspui/handle/repository/23011" />
    <author>
      <name>KALIA, NITESH</name>
    </author>
    <author>
      <name>Singh, Priya (SUPERVISOR)</name>
    </author>
    <id>http://dspace.dtu.ac.in:8080/jspui/handle/repository/23011</id>
    <updated>2026-07-06T09:16:39Z</updated>
    <published>2026-05-01T00:00:00Z</published>
    <summary type="text">Title: LARGE LANGUAGE MODEL DRIVEN AGENTIC FRAME WORK FOR ADAPTIVE RETRIEVAL AND MULTI-HOP REASONING
Authors: KALIA, NITESH; Singh, Priya (SUPERVISOR)
Abstract: Retrieval Augmented Generation (RAG)hasestablished itself as a foundational paradigm&#xD;
for grounding the outputs of Large Language Models in externally retrieved factual ev&#xD;
idence, substantially reducing the hallucination that arises when parametric models are&#xD;
queried on knowledge beyond their training distribution. However, the dominant de&#xD;
ployment pattern for RAG remains a fixed single pass architecture in which a query is&#xD;
submitted once to a retrieval index, a static document set is returned, and an answer&#xD;
is generated from that set without any mechanism for self assessment, iterative refine&#xD;
ment, or adaptive re-retrieval. While this architecture is adequate for simple factoid&#xD;
questions whose complete answer can be recovered from a single retrieved document,&#xD;
it is fundamentally incapable of handling multi-hop questions, which are queries that&#xD;
require sequential reasoning across two or more documents where the answer to one&#xD;
intermediate reasoning step serves as the necessary context for formulating the next&#xD;
retrieval query. Failure mode is well characterised and systematic: If the single re&#xD;
trieved set is not complete (missing bridging facts), the generator either fabricates a&#xD;
plausible sounding but incorrect answer, or fails to complete an answer at all, without&#xD;
mechanisms to seek the missing evidence.&#xD;
This thesis directly tackles the above fault by designing, implementing, and eval&#xD;
uating thoroughly a Large Language Model (LLM) Driven Agentic Framework for&#xD;
Adaptive Retrieval and Multi-Hop Reasoning (MR). Three cooperative agentic mech&#xD;
anisms are introduced to the retrieval loop, adding to the passive fixed pipeline RAG&#xD;
architecture and making it an active, self-aware, evidence seeking process. The first is&#xD;
a question classifier that allows to classify an input query as simple or compositional&#xD;
and processes it through the right retrieval path, without causing the degradation of the&#xD;
accuracy that would result if complex decomposition strategies were applied to simple&#xD;
questions. The second is an iterative query rewriter that, at each retrieval step, explic&#xD;
itly identifies the specific information missing from the accumulated evidence set and&#xD;
constructs a targeted sub-query to retrieve it, appending only new documents to pre&#xD;
vent redundant context growth and terminating when no new evidence is returned. The&#xD;
third is a dual-signal sufficiency checker that combines a dense retrieval cosine simi&#xD;
larity threshold with an LLM based answerability judgement, requiring both signals to&#xD;
be satisfied simultaneously before answer generation is initiated, thereby reducing the&#xD;
probability of generating from insufficient evidence.&#xD;
The framework is evaluated on one hundred questions from the HotpotQA distrac&#xD;
tor benchmark, a dataset specifically designed to test multi-hop retrieval and reasoning&#xD;
under realistic retrieval noise conditions, achieving 46.0% Exact Match and 58.66%&#xD;
F1. These results represent absolute improvements of twenty four and sixteen per&#xD;
centage points respectively over a Vanilla RAG baseline, corresponding to a relative&#xD;
iv&#xD;
improvement of 109% in Exact Match, and outperform all three fixed strategy base&#xD;
lines compared. A structured ablation study establishes that all three components are&#xD;
necessary and complementary, with query rewriting identified as the single most crit&#xD;
ical component whose removal causes a ten percentage point Exact Match drop and a&#xD;
twenty five percentage point Retrieval Recall collapse. A comprehensive failure analy&#xD;
sis demonstrates that the framework successfully shifts the dominant error mode from&#xD;
retrieval failure to reasoning failure, directly redirecting future research effort toward&#xD;
generation quality rather than retrieval design. Together, these findings establish the&#xD;
proposed framework as a principled and empirically validated solution to the multi-hop&#xD;
retrieval and reasoning challenge that is practically deployable without any annotated&#xD;
reasoning supervision or model fine-tuning.</summary>
    <dc:date>2026-05-01T00:00:00Z</dc:date>
  </entry>
  <entry>
    <title>A COMPARATIVE STUDY ON MACHINE LEARNING BASED STOCK PREDICTION BY INCORPORATING SENTIMENT ANALYSIS USING FINBERT</title>
    <link rel="alternate" href="http://dspace.dtu.ac.in:8080/jspui/handle/repository/22058" />
    <author>
      <name>SINGH, VIBHOR</name>
    </author>
    <id>http://dspace.dtu.ac.in:8080/jspui/handle/repository/22058</id>
    <updated>2025-08-08T05:18:16Z</updated>
    <published>2025-05-01T00:00:00Z</published>
    <summary type="text">Title: A COMPARATIVE STUDY ON MACHINE LEARNING BASED STOCK PREDICTION BY INCORPORATING SENTIMENT ANALYSIS USING FINBERT
Authors: SINGH, VIBHOR
Abstract: Swift evolution of ML techniques, the financial forecasting scenario have&#xD;
been transformed tremendously. The domain of stock market prediction is one of the&#xD;
prominent applications of ML considering its inherent complexity and economic&#xD;
implication. Time series and statistical model was conventional cornerstone of market&#xD;
analysis, but they have limited potential for capturing intricate pattern. NLP sentiment&#xD;
analysis played a game changing role for more efficient stock prediction. NLP taps&#xD;
into huge pool of textual data of different sources, comprising of news and social media&#xD;
outlets. The collective mood and opinion of market participants can now be harness&#xD;
using power of NLP sentiment analysis which is to be fed to predictive model for better&#xD;
forecasting. Fusion of sentiment derived insights with ML algorithms presents a&#xD;
substantial leap which not only surges the predictive power of existing models but also&#xD;
provide nuanced understanding of the psychology of market movements driving&#xD;
factors. Consequently, financial industry witnessing a paradigm shift for the&#xD;
anticipation of stock prices fluctuations, with the support of AI driven sentiment&#xD;
analysis&#xD;
This paper presents a machine learning-based stock prediction model that&#xD;
integrates sentiment analysis using FinBERT, it is a specialized model for financial&#xD;
sentiment analysis that uses BERT. This study focuses on enhancing financial stock&#xD;
forecasting by adding investors sentiment data with conventional stock price data. This&#xD;
study takes into consideration traditional time series model like SARIMA for stock&#xD;
price prediction and three FinBERT infused ML models namely SVR, RFR, GBR.&#xD;
Eventually all predictive models are compared through regression evaluation metrics&#xD;
like MAE, MSE, RMSE, R2.</summary>
    <dc:date>2025-05-01T00:00:00Z</dc:date>
  </entry>
  <entry>
    <title>OPTIMISING ENERGY EFFICIENCY IN WIRELESS SENSOR NETWORKS: A STUDY OF CLUSTER-BASED HIERARCHICAL ARCHITECTURE</title>
    <link rel="alternate" href="http://dspace.dtu.ac.in:8080/jspui/handle/repository/22046" />
    <author>
      <name>SHARDA</name>
    </author>
    <id>http://dspace.dtu.ac.in:8080/jspui/handle/repository/22046</id>
    <updated>2025-08-01T06:07:52Z</updated>
    <published>2024-06-01T00:00:00Z</published>
    <summary type="text">Title: OPTIMISING ENERGY EFFICIENCY IN WIRELESS SENSOR NETWORKS: A STUDY OF CLUSTER-BASED HIERARCHICAL ARCHITECTURE
Authors: SHARDA
Abstract: Wireless sensor networks (WSNs) and IoT (Internet of Things) involve numerous small sensor nodes (SNs) running on batteries, expending energy in data routing towards the sink. An efficient routing scheme is crucial for WSN longevity. In WSN routing, minimising routing hops conflicts with inter-hop routing distance - fewer hops may increase distance and vice versa. To address this, we introduce a new Multi-Objective Biogeography Based Optimization algorithm (MOBBO-R) to optimize both routing objectives and reduce energy consumption in WSNs. MOBBO-R seeks a Pareto optimal solution, prolonging WSN lifetime by enhancing routing efficiency. Validated through MATLAB, MOBBO-R outperforms past routing algorithms like PSO routing and neighbourhood routing by approximately 7% and 22%, respectively. This algorithm holds promise for various IoT and IoE-based applications globally.</summary>
    <dc:date>2024-06-01T00:00:00Z</dc:date>
  </entry>
</feed>

