<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Large Language Models | Mobina Kashaniyan</title><link>https://iammobina.github.io/tag/large-language-models/</link><atom:link href="https://iammobina.github.io/tag/large-language-models/index.xml" rel="self" type="application/rss+xml"/><description>Large Language Models</description><generator>Wowchemy (https://wowchemy.com)</generator><language>en-us</language><lastBuildDate>Thu, 02 Jul 2026 00:00:00 +0000</lastBuildDate><image><url>https://iammobina.github.io/media/logo_hu_49df124fc4898e21.png</url><title>Large Language Models</title><link>https://iammobina.github.io/tag/large-language-models/</link></image><item><title>How LLM-Driven AutoML Can Improve Cross-Lingual Handwritten OCR</title><link>https://iammobina.github.io/post/llm-driven-automl-cross-lingual-handwritten-ocr/</link><pubDate>Thu, 02 Jul 2026 00:00:00 +0000</pubDate><guid>https://iammobina.github.io/post/llm-driven-automl-cross-lingual-handwritten-ocr/</guid><description>&lt;p&gt;Handwritten text recognition remains a challenging problem in machine learning, especially when models must work across multiple languages and writing systems. Arabic, English, and Persian scripts each introduce different visual structures, character shapes, stroke patterns, and recognition challenges. These differences make cross-lingual handwritten OCR difficult to scale using traditional manually designed models.&lt;/p&gt;
&lt;p&gt;In our paper, &lt;strong&gt;“LLM-Driven AutoML for Cross-Lingual Handwritten OCR: Closed-Loop Neural Architecture Search with GPT-5, GPT-4o, and Claude Sonnet 4,”&lt;/strong&gt; we study how large language models can support fully automated model design for handwritten optical character recognition.&lt;/p&gt;
&lt;p&gt;The main idea is to use LLMs as AutoML agents. Instead of relying on manual neural architecture design, domain-specific preprocessing, or human model selection, the proposed pipeline allows large language models to generate, evaluate, and refine OCR architectures in a closed-loop neural architecture search process.&lt;/p&gt;
&lt;p&gt;The framework uses &lt;strong&gt;GPT-5, GPT-4o, and Claude Sonnet 4&lt;/strong&gt; to independently propose and improve neural network architectures for handwritten OCR. The approach is evaluated on &lt;strong&gt;Arabic, English, and Persian handwritten text recognition&lt;/strong&gt;, making it relevant to multilingual OCR, low-resource language processing, document intelligence, and automated machine learning.&lt;/p&gt;
&lt;p&gt;This work contributes to research on &lt;strong&gt;LLM-driven AutoML, cross-lingual OCR, handwritten text recognition, neural architecture search, multilingual AI, and automated model design&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Researchers working on OCR, AutoML, LLM agents, computer vision, Persian handwriting recognition, Arabic handwriting recognition, or low-resource language technologies may find this work useful.&lt;/p&gt;
&lt;h2 id="paper"&gt;Paper&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;LLM-Driven AutoML for Cross-Lingual Handwritten OCR: Closed-Loop Neural Architecture Search with GPT-5, GPT-4o, and Claude Sonnet 4&lt;/strong&gt;&lt;br&gt;
Mobina Kashaniyan, Amirhossein Ghassemi, Nasser Mozayani&lt;br&gt;
Published in &lt;strong&gt;2025 15th International Conference on Computer and Knowledge Engineering (ICCKE)&lt;/strong&gt;, IEEE.&lt;/p&gt;
&lt;p&gt;DOI: &lt;a href="https://doi.org/10.1109/ICCKE68588.2025.11273810" target="_blank" rel="noopener"&gt;https://doi.org/10.1109/ICCKE68588.2025.11273810&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;PDF : &lt;a href="https://mobinakashaniyan.github.io/papers/llm-driven-automl-cross-lingual-handwritten-ocr.pdf" target="_blank" rel="noopener"&gt;https://mobinakashaniyan.github.io/papers/llm-driven-automl-cross-lingual-handwritten-ocr.pdf&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;IEEE Xplore: &lt;a href="https://ieeexplore.ieee.org/abstract/document/11273810" target="_blank" rel="noopener"&gt;https://ieeexplore.ieee.org/abstract/document/11273810&lt;/a&gt;&lt;/p&gt;
&lt;h2 id="keywords"&gt;Keywords&lt;/h2&gt;
&lt;p&gt;LLM-driven AutoML, handwritten OCR, cross-lingual OCR, multilingual OCR, optical character recognition, neural architecture search, GPT-5, GPT-4o, Claude Sonnet 4, LLM agents, Persian OCR, Arabic OCR, English handwriting recognition, document intelligence, low-resource language processing, automated model design, computer vision.&lt;/p&gt;</description></item><item><title>PerfMamba: Performance Analysis and Pruning of Selective State Space Models</title><link>https://iammobina.github.io/post/perfmamba-performance-analysis-pruning/</link><pubDate>Thu, 02 Jul 2026 00:00:00 +0000</pubDate><guid>https://iammobina.github.io/post/perfmamba-performance-analysis-pruning/</guid><description>&lt;p&gt;Modern sequence models are becoming increasingly powerful, but their computational cost, memory behavior, and deployment efficiency remain important challenges. This is especially relevant for emerging architectures such as &lt;strong&gt;Mamba&lt;/strong&gt; and &lt;strong&gt;selective state space models&lt;/strong&gt;, which have been proposed as efficient alternatives to Transformer-based sequence models.&lt;/p&gt;
&lt;p&gt;Our paper, &lt;strong&gt;“PerfMamba: Performance Analysis and Pruning of Selective State Space Models,”&lt;/strong&gt; presents an empirical study of &lt;strong&gt;Mamba-1 and Mamba-2&lt;/strong&gt;. The work analyzes runtime behavior, resource utilization, computation patterns, memory access, I/O characteristics, and scaling properties across sequence lengths from &lt;strong&gt;64 to 16,384 tokens&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;The study shows how different components of selective state space models contribute to performance and efficiency. In particular, the paper examines the SSM component, which plays a central role in Mamba-style architectures, and identifies opportunities for optimization through pruning.&lt;/p&gt;
&lt;p&gt;Based on the profiling results, &lt;strong&gt;PerfMamba&lt;/strong&gt; explores pruning low-activity states in the SSM component to improve throughput and reduce memory usage while maintaining model accuracy under moderate pruning.&lt;/p&gt;
&lt;p&gt;This work contributes to research on &lt;strong&gt;Mamba, selective state space models, performance analysis, runtime profiling, model pruning, model compression, efficient AI, high-performance computing, and hardware-aware optimization&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Researchers working on &lt;strong&gt;large language models, sequence modeling, AI systems, neural network acceleration, scalable machine learning, and efficient deep learning&lt;/strong&gt; may find this work useful.&lt;/p&gt;
&lt;h2 id="paper"&gt;Paper&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;PerfMamba: Performance Analysis and Pruning of Selective State Space Models&lt;/strong&gt;&lt;br&gt;
Abdullah Al Asif, Mobina Kashaniyan, Sixing Yu, Juan Pablo Muñoz, Ali Jannesari&lt;/p&gt;
&lt;p&gt;Published in: &lt;strong&gt;International Symposium on Benchmarking, Measuring and Optimization&lt;/strong&gt;&lt;br&gt;
Publisher: &lt;strong&gt;Springer, Singapore&lt;/strong&gt;&lt;br&gt;
Year: &lt;strong&gt;2026&lt;/strong&gt;&lt;br&gt;
Pages: &lt;strong&gt;27–44&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Paper page: &lt;a href="https://mobinakashaniyan.github.io/publications/perfmamba/" target="_blank" rel="noopener"&gt;https://mobinakashaniyan.github.io/publications/perfmamba/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;PDF: &lt;a href="https://mobinakashaniyan.github.io/papers/perfmamba-performance-analysis-pruning-selective-state-space-models.pdf" target="_blank" rel="noopener"&gt;https://mobinakashaniyan.github.io/papers/perfmamba-performance-analysis-pruning-selective-state-space-models.pdf&lt;/a&gt;&lt;/p&gt;
&lt;h2 id="keywords"&gt;Keywords&lt;/h2&gt;
&lt;p&gt;PerfMamba, Mamba, Mamba-1, Mamba-2, selective state space models, state space models, SSM, sequence modeling, Transformer alternatives, performance analysis, runtime profiling, benchmarking, resource utilization, memory access patterns, I/O characteristics, scaling analysis, model pruning, state pruning, model compression, efficient AI, high-performance computing, hardware-aware optimization, large language models, AI systems, neural network acceleration.&lt;/p&gt;
&lt;h2 id="citation"&gt;Citation&lt;/h2&gt;
&lt;p&gt;Al Asif, A., Kashaniyan, M., Yu, S., Muñoz, J. P., &amp;amp; Jannesari, A. (2026). &lt;em&gt;PerfMamba: Performance analysis and pruning of selective state space models&lt;/em&gt;. In &lt;strong&gt;International Symposium on Benchmarking, Measuring and Optimization&lt;/strong&gt; (pp. 27–44). Springer, Singapore.&lt;/p&gt;</description></item><item><title>PerfMamba: Performance Analysis and Pruning of Selective State Space Models</title><link>https://iammobina.github.io/publication/perfmamba-performance-analysis-and-pruning-of-selective-state-space-models/</link><pubDate>Thu, 01 Jan 2026 00:00:00 +0000</pubDate><guid>https://iammobina.github.io/publication/perfmamba-performance-analysis-and-pruning-of-selective-state-space-models/</guid><description>&lt;p&gt;This paper contributes to research on &lt;strong&gt;PerfMamba, Mamba-1, Mamba-2, selective state space models, performance analysis, model pruning, benchmarking, efficient AI, and high-performance computing&lt;/strong&gt; by providing a systematic empirical study of the runtime behavior and optimization opportunities of Mamba-style architectures.&lt;/p&gt;
&lt;p&gt;Recent sequence modeling research has introduced &lt;strong&gt;selective state space models&lt;/strong&gt; as efficient alternatives to Transformer architectures. However, their real-world performance behavior, memory access patterns, I/O characteristics, resource utilization, and scaling properties require deeper analysis for effective deployment.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;PerfMamba&lt;/strong&gt; profiles &lt;strong&gt;Mamba-1 and Mamba-2&lt;/strong&gt; across sequence lengths from &lt;strong&gt;64 to 16,384 tokens&lt;/strong&gt;. The study analyzes computation patterns, memory behavior, I/O characteristics, and scaling trends to identify the components that dominate runtime and resource usage.&lt;/p&gt;
&lt;p&gt;Based on these insights, the paper proposes a pruning technique that removes low-activity states within the SSM component. This supports improved throughput and reduced memory usage while maintaining accuracy under moderate pruning.&lt;/p&gt;
&lt;p&gt;This work is relevant to researchers working on &lt;strong&gt;Mamba, selective state space models, state space models, large language models, sequence modeling, model pruning, model compression, runtime profiling, AI systems, neural network acceleration, and hardware-aware optimization&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Keywords:&lt;/strong&gt; PerfMamba, Mamba, Mamba-1, Mamba-2, selective state space models, state space models, SSM, sequence modeling, Transformer alternatives, performance analysis, benchmarking, runtime profiling, resource utilization, memory access patterns, I/O characteristics, scaling analysis, model pruning, state pruning, model compression, efficient AI, high-performance computing, hardware-aware optimization, large language models, AI systems.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Citation:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Al Asif, A., Kashaniyan, M., Yu, S., Muñoz, J. P., &amp;amp; Jannesari, A. (2026). PerfMamba: Performance analysis and pruning of selective state space models. In &lt;em&gt;International Symposium on Benchmarking, Measuring and Optimization&lt;/em&gt; (pp. 27–44). Springer, Singapore.&lt;/p&gt;</description></item><item><title>LLM-Driven AutoML for Cross-Lingual Handwritten OCR: Closed-Loop Neural Architecture Search with GPT-5, GPT-4o, and Claude Sonnet 4</title><link>https://iammobina.github.io/publication/llm-driven-automl-for-cross-lingual-handwritten-ocr-closed-loop-neural-architecture-search-with-gpt-5-gpt-4o-and-claude-sonnet-4/</link><pubDate>Tue, 28 Oct 2025 00:00:00 +0000</pubDate><guid>https://iammobina.github.io/publication/llm-driven-automl-for-cross-lingual-handwritten-ocr-closed-loop-neural-architecture-search-with-gpt-5-gpt-4o-and-claude-sonnet-4/</guid><description>&lt;p&gt;This paper contributes to research on &lt;strong&gt;handwritten OCR, cross-lingual OCR, multilingual AI, AutoML, neural architecture search, and LLM-driven model design&lt;/strong&gt; by introducing a fully automated pipeline for handwritten optical character recognition across multiple scripts.&lt;/p&gt;
&lt;p&gt;Unlike traditional OCR approaches that rely on manual neural architecture design, language-specific preprocessing, or expert-guided model selection, this work uses &lt;strong&gt;large language models&lt;/strong&gt; to generate, evaluate, and refine OCR architectures in a &lt;strong&gt;closed-loop neural architecture search&lt;/strong&gt; process.&lt;/p&gt;
&lt;p&gt;The proposed framework applies &lt;strong&gt;GPT-5, GPT-4o, and Claude Sonnet 4&lt;/strong&gt; to automate model design for &lt;strong&gt;Arabic, English, and Persian handwritten text recognition&lt;/strong&gt;. By testing the method across scripts with different visual and linguistic characteristics, the paper highlights the potential of &lt;strong&gt;LLM-driven AutoML&lt;/strong&gt; for scalable multilingual OCR and low-resource language applications.&lt;/p&gt;
&lt;p&gt;This work is relevant to researchers working on &lt;strong&gt;optical character recognition, handwritten text recognition, multilingual document intelligence, neural architecture search, AutoML, LLM agents, computer vision, and low-resource language processing&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Keywords:&lt;/strong&gt; handwritten OCR, cross-lingual OCR, multilingual OCR, optical character recognition, handwritten text recognition, AutoML, neural architecture search, LLM-driven AutoML, large language models, GPT-5, GPT-4o, Claude Sonnet 4, LLM agents, automated model design, document intelligence, multilingual AI, Arabic handwriting recognition, Persian handwriting recognition, low-resource language processing, computer vision for text recognition.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Citation:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Kashaniyan, M., Ghassemi, A., &amp;amp; Mozayani, N. (2025). LLM-driven AutoML for cross-lingual handwritten OCR: Closed-loop neural architecture search with GPT-5, GPT-4o, and Claude Sonnet 4. In &lt;em&gt;2025 15th International Conference on Computer and Knowledge Engineering (ICCKE)&lt;/em&gt;, IEEE, pp. 1–6. &lt;a href="https://doi.org/10.1109/ICCKE68588.2025.11273810" target="_blank" rel="noopener"&gt;https://doi.org/10.1109/ICCKE68588.2025.11273810&lt;/a&gt;&lt;/p&gt;</description></item></channel></rss>