<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Research Summary | Mobina Kashaniyan</title><link>https://iammobina.github.io/category/research-summary/</link><atom:link href="https://iammobina.github.io/category/research-summary/index.xml" rel="self" type="application/rss+xml"/><description>Research Summary</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>Research Summary</title><link>https://iammobina.github.io/category/research-summary/</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>Why Dependency-Aware Auto-Scaling Matters in Serverless Computing</title><link>https://iammobina.github.io/post/dependency-aware-serverless-autoscaling/</link><pubDate>Thu, 02 Jul 2026 00:00:00 +0000</pubDate><guid>https://iammobina.github.io/post/dependency-aware-serverless-autoscaling/</guid><description>&lt;p&gt;Serverless computing provides automatic resource management and pay-per-use execution, but efficient auto-scaling remains challenging. Dynamic workloads, cold-start latency, and inter-function dependencies can make scaling decisions unreliable when each function is treated independently.&lt;/p&gt;
&lt;p&gt;In my paper, &lt;strong&gt;“An Auto-Scaling Approach for Serverless Environments Based on a Multi-Expert Consensus Mechanism,”&lt;/strong&gt; we propose a dependency-aware auto-scaling framework for Function-as-a-Service environments.&lt;/p&gt;
&lt;p&gt;The framework models serverless applications as &lt;strong&gt;directed dependency graphs&lt;/strong&gt;, identifies high-impact bottleneck functions using &lt;strong&gt;degree centrality&lt;/strong&gt;, and applies short-horizon workload forecasting. Instead of relying on one predictor, the system combines multiple lightweight predictive models using a &lt;strong&gt;multi-expert consensus mechanism&lt;/strong&gt; inspired by Bayesian model averaging.&lt;/p&gt;
&lt;p&gt;This research contributes to &lt;strong&gt;serverless computing, cloud resource management, workload forecasting, dependency-aware scaling, ensemble learning, and cost-aware optimization&lt;/strong&gt;.&lt;/p&gt;
&lt;h2 id="paper"&gt;Paper&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;An Auto-Scaling Approach for Serverless Environments Based on a Multi-Expert Consensus Mechanism&lt;/strong&gt;&lt;br&gt;
Mobina Kashaniyan, Mehrdad Ashtiani, Amirhossein Ghassemi&lt;br&gt;
Published in &lt;em&gt;Journal of Ambient Intelligence and Smart Environments&lt;/em&gt;, SAGE Publications.&lt;/p&gt;
&lt;p&gt;DOI: &lt;a href="https://doi.org/10.1177/18761364261459585" target="_blank" rel="noopener"&gt;https://doi.org/10.1177/18761364261459585&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Paper page: &lt;a href="https://mobinakashaniyan.github.io/publications/consensus-autoscaling-serverless/" target="_blank" rel="noopener"&gt;https://mobinakashaniyan.github.io/publications/consensus-autoscaling-serverless/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;PDF: &lt;a href="https://mobinakashaniyan.github.io/papers/an-auto-scaling-approach-serverless-environments-multi-expert-consensus.pdf" target="_blank" rel="noopener"&gt;https://mobinakashaniyan.github.io/papers/an-auto-scaling-approach-serverless-environments-multi-expert-consensus.pdf&lt;/a&gt;&lt;/p&gt;</description></item></channel></rss>