<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>Paper on Break Lib Site</title>
        <link>https://break.mlibia.xyz/categories/paper/</link>
        <description>Recent content in Paper on Break Lib Site</description>
        <generator>Hugo -- gohugo.io</generator>
        <language>en</language>
        <copyright>Lib Copyright</copyright>
        <lastBuildDate>Sun, 19 Jul 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://break.mlibia.xyz/categories/paper/index.xml" rel="self" type="application/rss+xml" /><item>
        <title>Evaluating Small LLMs on Linux Troubleshooting Tasks with DeepEval</title>
        <link>https://break.mlibia.xyz/p/evaluating-small-llms-on-linux-troubleshooting-tasks-with-deepeval/</link>
        <pubDate>Sun, 19 Jul 2026 00:00:00 +0000</pubDate>
        
        <guid>https://break.mlibia.xyz/p/evaluating-small-llms-on-linux-troubleshooting-tasks-with-deepeval/</guid>
        <description>&lt;img src="https://break.mlibia.xyz/p/evaluating-small-llms-on-linux-troubleshooting-tasks-with-deepeval/nature.jpg" alt="Featured image of post Evaluating Small LLMs on Linux Troubleshooting Tasks with DeepEval" /&gt;&lt;h2 id=&#34;introduction&#34;&gt;Introduction
&lt;/h2&gt;&lt;p&gt;This work evaluates large language models on Linux troubleshooting tasks for IT operators, using the DeepEval framework with the G-Eval metric to assess the correspondence between a given issue (input) and the model&amp;rsquo;s proposed solution (actual output). The evaluation targets small and cost-efficient models to identify which is best suited for this task. Building on prior work studying the integration of LLMs into infrastructure operations tasks, this study focuses specifically on error diagnosis and troubleshooting in Linux environments.&lt;/p&gt;
&lt;h2 id=&#34;related-work&#34;&gt;Related Work
&lt;/h2&gt;&lt;h3 id=&#34;can-ai-judge-ai--designing-and-building-an-automated-llm-evaluation-platform-for-enterprise-generative-ai-systems&#34;&gt;Can AI judge AI? : designing and building an automated LLM evaluation platform for enterprise generative AI systems
&lt;/h3&gt;&lt;p&gt;The thesis identifies that most quality evaluations in enterprise settings remain manual, subjective, and inconsistent, and while human evaluation is valuable and often treated as the most trusted form of assessment, it&amp;rsquo;s slow (2020). The thesis evaluate a &lt;strong&gt;protocol-driven LLM evaluation microservice&lt;/strong&gt; that automatically scores RAG-enabled LLM outputs against standardized metrics as a non-blocking, event-driven (Kafka-native) downstream observer. Concretely, the work pursues three goals:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Design a modular, protocol-driven microservice architecture for automated evaluation.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Implement it as a working artifact integrating DeepEval metrics with a configurable LLM judge model.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Evaluate the artifact against design requirements metric behavior, evaluation consistency, and architectural properties like idempotency and portability.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;It uses 2 metrics:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Built-in DeepEval metrics Faithfulness, Answer Relevancy, and Contextual Relevancy chosen to align with multi-dimensional evaluation approaches recommended in recent factuality/evaluation surveys.&lt;/li&gt;
&lt;li&gt;Custom rubric-based metrics (via DeepEval&amp;rsquo;s GEval) Completeness (whether the output addresses all explicit requirements in the input) and Informativeness (whether the output is specific and useful rather than vague).&lt;/li&gt;
&lt;/ol&gt;
&lt;h3 id=&#34;opseval-a-comprehensive-benchmark-suite&#34;&gt;OpsEval: A Comprehensive Benchmark Suite
&lt;/h3&gt;&lt;p&gt;The work is a benchmark for evaluating LLM capabilities in IT operations (AIOps). IT operations tasks demand specialized technical knowledge, domain-specific terminology, and often involve proprietary or private information. The benchmark comprises 9,070 questions spanning 9 sub-domains, 8 tasks, and 3 core abilities. The question set is split between 7,334 multiple-choice questions and 1,736 open-ended QA items, with 20% of the total dataset created by domain experts and released publicly. Thay also evaluate 24 state-of-the-art LLMs under several distinct prompting techniques: Chain-of-thought (CoT), Self-consistency, In-context learning. The evaluation metric is &lt;strong&gt;FAE-Score&lt;/strong&gt; designed to grade open-ended QA responses. The authors report that FAE-Score aligns substantially better with human expert judgments than traditional overlap-based metrics.&lt;/p&gt;
&lt;h3 id=&#34;accurate-and-interpretable-log-based-fault-diagnosis-using-large-language-models&#34;&gt;Accurate and Interpretable Log-Based Fault Diagnosis Using Large Language Models
&lt;/h3&gt;&lt;p&gt;Fault diagnosis typically requires reasoning over extensive log sequences, but LLMs&amp;rsquo; context windows are too short to ingest all relevant logs at once.&lt;/p&gt;
&lt;p&gt;The authors propose &lt;strong&gt;LogInsight&lt;/strong&gt;, which combines two components:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Fine-tuning&lt;/strong&gt; a medium-sized, open-source LLM to inject domain-specific fault-diagnosis knowledge rather than relying on a general-purpose model out-of-the-box.&lt;/li&gt;
&lt;li&gt;A &lt;strong&gt;Fault-Oriented Log Summary (FOLS) module&lt;/strong&gt;, which extracts the critical information from each log sequence before it reaches the LLM, mitigating the context-length bottleneck without requiring the model to process raw, full-length logs.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;LogInsight is evaluated on three datasets two public and one production dataset, outperforming state-of-the-art baselines by &lt;strong&gt;36.9%, 12.8%, and 7.3%&lt;/strong&gt; on the respective datasets.&lt;/p&gt;
&lt;h2 id=&#34;methodology&#34;&gt;Methodology
&lt;/h2&gt;&lt;h3 id=&#34;llm-test-cases&#34;&gt;LLM Test Cases
&lt;/h3&gt;&lt;p&gt;An &lt;code&gt;LLMTestCase&lt;/code&gt; in DeepEval is used to unit test interactions within an LLM application, including RAG and LLM agent use cases (for individual components, nested agents, or the agent as a whole). It contains the information needed to evaluate the application for a given input (e.g., &lt;code&gt;tools_called&lt;/code&gt; for agents, &lt;code&gt;retrieval_context&lt;/code&gt; for RAG).&lt;/p&gt;
&lt;p&gt;An &lt;code&gt;LLMTestCase&lt;/code&gt; supports two evaluation levels:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;End-to-end&lt;/strong&gt;: represents the input and output of the &amp;ldquo;black-box&amp;rdquo; LLM application.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Component-level&lt;/strong&gt;: multiple &lt;code&gt;LLMTestCase&lt;/code&gt; instances represent multiple interactions across different components.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Creating an &lt;code&gt;LLMTestCase&lt;/code&gt; requires specifying:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;input&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;actual_output&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Additional parameters, such as &lt;code&gt;expected_output&lt;/code&gt; and &lt;code&gt;context&lt;/code&gt;, are required only when the evaluation criteria depend on them. In the evaluation Parameters:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-fallback&#34; data-lang=&#34;fallback&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;evaluation_params = [SingleTurnParams.INPUT, SingleTurnParams.ACTUAL_OUTPUT]
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;Each value corresponds to a component of the test case:&lt;/p&gt;
&lt;p&gt;SingleTurnParams.INPUT: The original question or issue given to the model (e.g., &amp;ldquo;How do I install htop?&amp;rdquo;).
SingleTurnParams.ACTUAL_OUTPUT: The response generated by the model being evaluated&lt;/p&gt;
&lt;h3 id=&#34;evaluation-dataset&#34;&gt;Evaluation Dataset
&lt;/h3&gt;&lt;p&gt;&lt;em&gt;Linux Troubleshooting.&lt;/em&gt; 2 basic steps apply to nearly any issue, following a systematic, methodical approach that tests one possibility at a time:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Gather the component and be concise. Avoid vague messages such as &amp;ldquo;the server is broken&amp;rdquo;; instead, be specific, e.g., &amp;ldquo;the web server returned a 503 on /api/users.&amp;rdquo;&lt;/li&gt;
&lt;li&gt;Filter log files rather than reading them in full. For large log files, search them, e.g., &lt;code&gt;grep -i error /var/log/syslog&lt;/code&gt;.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;The evaluation dataset is structured as a CSV file with four fields: question, answer, context, and model. The question field contains the Linux troubleshooting query posed to the model. The answer field contains the model&amp;rsquo;s generated response, including any command-line instructions. The context field specifies the relevant system environment for the query. The context was used to obtain the answer field. The model field identifies which LLM generated the response.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;4. Models&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
  &lt;thead&gt;
      &lt;tr&gt;
          &lt;th&gt;Model&lt;/th&gt;
          &lt;th&gt;Access&lt;/th&gt;
          &lt;th&gt;Input&lt;/th&gt;
          &lt;th&gt;Output&lt;/th&gt;
      &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
      &lt;tr&gt;
          &lt;td&gt;qwen/qwen-2.5-7b-instruct&lt;/td&gt;
          &lt;td&gt;API&lt;/td&gt;
          &lt;td&gt;0.04$&lt;/td&gt;
          &lt;td&gt;0.1$&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;meta-llama/llama-3.1-8b-instruct&lt;/td&gt;
          &lt;td&gt;API&lt;/td&gt;
          &lt;td&gt;0.02$&lt;/td&gt;
          &lt;td&gt;0.03$&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;meta-llama/llama-3.2-1b-instruct&lt;/td&gt;
          &lt;td&gt;API&lt;/td&gt;
          &lt;td&gt;0.027$&lt;/td&gt;
          &lt;td&gt;0.201$&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;meta-llama/llama-4-scout&lt;/td&gt;
          &lt;td&gt;API&lt;/td&gt;
          &lt;td&gt;0.1$&lt;/td&gt;
          &lt;td&gt;0.2$&lt;/td&gt;
      &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;
&lt;h2 id=&#34;results&#34;&gt;Results
&lt;/h2&gt;&lt;p&gt;&lt;img src=&#34;https://break.mlibia.xyz/p/evaluating-small-llms-on-linux-troubleshooting-tasks-with-deepeval/final_short.png&#34;
	width=&#34;1650&#34;
	height=&#34;900&#34;
	srcset=&#34;https://break.mlibia.xyz/p/evaluating-small-llms-on-linux-troubleshooting-tasks-with-deepeval/final_short_hu9038311370253324899.png 480w, https://break.mlibia.xyz/p/evaluating-small-llms-on-linux-troubleshooting-tasks-with-deepeval/final_short_hu16638759268785388655.png 1024w&#34;
	loading=&#34;lazy&#34;
	
		alt=&#34;Result&#34;
	
	
		class=&#34;gallery-image&#34; 
		data-flex-grow=&#34;183&#34;
		data-flex-basis=&#34;440px&#34;
	
&gt;&lt;/p&gt;
&lt;p&gt;The model with the smallest paramaters performed worst in Analytical Thinking. The Smallest model struggled to infer logical relationships in short, open-ended questions.&lt;/p&gt;
&lt;p&gt;Within Meta&amp;rsquo;s model family (e.g., Llama 4), &amp;ldquo;Instruct&amp;rdquo; denotes the general-purpose, conversational fine-tuned version, while &amp;ldquo;Scout&amp;rdquo; is designed specifically for processing large documents. Scout performed well with 3 failed cases a small differences relative to the Instruct model with 5 failed cases, despite having a smaller size.&lt;/p&gt;
&lt;p&gt;Qwen showed the best performance on Linux error scenarios at a size of 7B parameters with all 2 failed cases.&lt;/p&gt;
&lt;h2 id=&#34;conclusion&#34;&gt;Conclusion
&lt;/h2&gt;&lt;p&gt;This work evaluated four LLMs on Linux troubleshooting sceneario questions using DeepEval&amp;rsquo;s G-Eval metric. Results show that model size alone does not determine performance in meta models, while the smallest model tested performed worst on Analytical Thinking, struggling to infer logical relationships in short, open-ended questions. Among the evaluated models, qwen-2.5-7b-instruct showed the best overall performance on Linux error diagnosis scenarios,
suggesting it is a suitable candidate for cost-efficient deployment in IT operations support tasks.&lt;/p&gt;
&lt;h2 id=&#34;references&#34;&gt;References
&lt;/h2&gt;&lt;p&gt;&lt;a class=&#34;link&#34; href=&#34;https://deepeval.com/docs/metrics-llm-evals&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Geval&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class=&#34;link&#34; href=&#34;https://dl.acm.org/doi/10.1145/3696630.3728572&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;OpsEval: A Comprehensive Benchmark Suite for Evaluating Large Language Models’ Capability in IT Operations Domain&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class=&#34;link&#34; href=&#34;https://ieeexplore.ieee.org/document/11126982&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Accurate and Interpretable Log-Based Fault Diagnosis Using Large Language Models&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class=&#34;link&#34; href=&#34;https://lutpub.lut.fi/handle/10024/172626&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Can AI judge AI? : designing and building an automated LLM evaluation platform for enterprise generative AI systems&lt;/a&gt;&lt;/p&gt;

</description>
        </item>
        <item>
        <title>Awesome Research Lib List</title>
        <link>https://break.mlibia.xyz/p/awesome-research-lib-list/</link>
        <pubDate>Thu, 20 Feb 2025 00:00:00 +0000</pubDate>
        
        <guid>https://break.mlibia.xyz/p/awesome-research-lib-list/</guid>
        <description>&lt;p&gt;&lt;strong&gt;List Articles&lt;/strong&gt;&lt;/p&gt;
&lt;h3 id=&#34;--parents-education-levels-correlate-with-higher-digital-citizenship-scores-among-10-year-old-students&#34;&gt;- Parents&amp;rsquo; education levels correlate with higher digital citizenship scores among 10-year-old students
&lt;/h3&gt;&lt;p&gt;👉 &lt;a class=&#34;link&#34; href=&#34;https://notas.laotra.red/ZNO0C9taTF6MyzqoeCGH4g?edit&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;link article&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://break.mlibia.xyz/p/awesome-research-lib-list/preview_00.png&#34;
	width=&#34;273&#34;
	height=&#34;576&#34;
	srcset=&#34;https://break.mlibia.xyz/p/awesome-research-lib-list/preview_00_hu13032953514015644887.png 480w, https://break.mlibia.xyz/p/awesome-research-lib-list/preview_00_hu124794981627819584.png 1024w&#34;
	loading=&#34;lazy&#34;
	
		alt=&#34;preview&#34;
	
	
		class=&#34;gallery-image&#34; 
		data-flex-grow=&#34;47&#34;
		data-flex-basis=&#34;113px&#34;
	
&gt;&lt;/p&gt;
&lt;h3 id=&#34;offtopic&#34;&gt;Offtopic
&lt;/h3&gt;&lt;p&gt;Lastly, if you have a dog, please remember to take good care of them.🐶&lt;/p&gt;

</description>
        </item>
        
    </channel>
</rss>
