Skip to main content

20 posts tagged with "Tech"

Mellerikat의 기술, 제품 구조, 개발 인사이트를 공유합니다.

View All Tags

Risk Management in Data Centers with EVA

· 4 min read
Daniel Cho
Daniel Cho
Mellerikat Leader

1. Introduction: Data Center Fires — A “Billion-Dollar” Threat to Business Continuity 🥵

Recent data center fires have gone beyond physical damage, leading to massive financial liabilities due to service disruptions.

👉 SK C&C Pangyo Data Center Fire (2022): A fire originating in a lithium-ion UPS battery room caused major service outages, including Kakao, with estimated damages reaching trillions of KRW.

👉 OVHcloud Fire in France (2021): Triggered by UPS power equipment, this incident resulted in approximately €105M in total damages, with €58M covered by insurance—significantly increasing insurer exposure.

These large-scale incidents highlight that modern AI-era data centers carry risks that can no longer be controlled with traditional physical security measures alone.


😲 2. Data Center Insurance Structure and the Surge in AI GPU Center Premiums

Data center insurance is typically structured as a bundled package including:

  • Property (buildings and servers)
  • Business Interruption
  • Cyber Liability
  • General Liability

👉 Premium Rates Based on Asset Value Property insurance premiums usually range from 0.2% to 0.5% of total asset value. However, AI data centers are now facing rapidly increasing premiums due to elevated risk classifications.

👉 Risks of High-Density Servers AI GPU clusters have significantly higher power density compared to traditional servers, directly increasing fire risk.

Server TypePower Consumption per RackKey Risk Factors
Traditional Servers5 – 10 kWStandard cooling and power management
High-Performance Computing15 – 25 kWIncreased thermal management requirements
GPU Clusters40 – 120 kWCable overheating, PDU overload, electrical arcs

😎 3. Key Underwriting Checklist from Insurers

Global insurance brokers (Aon, Marsh, FM Global, etc.) evaluate risk based not on facility size, but on technical measures that reduce incident probability. EVA provides strong advantages across these evaluation criteria.

👉 Power Infrastructure Risks
Current Status: 40–50% of data center fires originate from electrical systems. Lithium-ion battery thermal runaway is a major driver of rising premiums.
🌈 EVA’s Role: Detects minute temperature variations and thermal anomalies at the battery cell level in real time, significantly reducing lithium battery risks.


👉 Advanced Fire Detection and Suppression Systems
Current Status: Early smoke detection and gas-based suppression systems are top underwriting priorities.
🌈 EVA’s Role: AI-powered visual intelligence enables instant detection of flames and smoke, reducing detection time to seconds.


👉 Operational Risk (Human Error)
Current Status: Insurers heavily assess 24/7 monitoring systems and thermal inspection practices.
🌈 EVA’s Role: Transforms manual, human-dependent inspections into automated AI-driven monitoring.


❣️ 4. Economic Impact of EVA Adoption: A Risk Engineering Approach

The insurance market is shifting from post-incident compensation to proactive risk engineering—reducing the likelihood of future incidents. AI safety solutions like EVA create a win-win structure for both insurers and policyholders.

👉 Direct Insurance Premium Reduction (15%–30%) Well-implemented risk management systems can lead to premium reductions of 15% to 30%. For data centers worth hundreds of billions of KRW, this translates into direct financial benefits that exceed the cost of deploying the solution.


👉 Five Core Risk Control Points EVA addresses the key underwriting factors that directly impact insurance premiums:

  • Continuous UPS battery monitoring: Early detection of thermal runaway
  • High power density 대응: Focused monitoring of cable and PDU overheating in AI GPU environments
  • Intelligent fire detection: Ultra-fast alerts based on visual data
  • 24/7 uninterrupted monitoring: Detection of unsafe behavior and human error
  • Faster incident response: Reduced time from alert to action

🥰 5. AI Safety Systems Define Data Center Business Continuity

From a data center operator’s perspective, EVA is not just a “security CCTV system.”

  • Financial Value: Reduces insurance premiums and prevents large-scale business interruption losses
  • Operational Value: Establishes standards for managing power and fire risks in high-density AI environments
  • Reputational Value: Strengthens brand trust as a “safe data center” validated by strict insurance assessments

Through a virtuous cycle of AI Safety System → Risk Reduction → Insurance Discount, data centers can achieve both maximum safety and economic efficiency.

EVA x Rebellions: Journey of EVA on NPU

· 4 min read
Gyulim Gu
Gyulim Gu
Tech Leader

The integration and optimization journey between Mellerikat EVA and Rebellions NPU clearly demonstrates the future direction of next-generation AI infrastructure. Through this project, we verified that NPU-based architectures can address the high cost and power consumption challenges of traditional GPU-centric infrastructures. In particular, in Physical AI environments—where real-time perception and reasoning are critical—we confirmed the potential to achieve both significant TCO (Total Cost of Ownership) reduction and high performance simultaneously.

Today, we would like to share the porting process of moving GPU-based models to NPUs, along with the technical challenges behind it, which many people have been curious about.


1. The NPU Porting Process for GPU Models

Since NPUs are designed to accelerate specific types of computations, newly released models cannot be executed immediately without adaptation. To fully utilize the hardware’s capabilities, several essential steps are required.

  • Model Conversion

    The original models developed in PyTorch or TensorFlow must be converted into an executable format that the NPU can understand. Using the ATOM Compiler from Rebellions, the model’s computational graph is analyzed and converted into the .rbln executable format optimized for the NPU architecture.

  • NPU-Optimized Compilation

    The model is compiled into a hardware-optimized executable using the compiler in the Rebellions SDK (RBLN SDK).

    • Graph Optimization: Removes redundant operations and reorganizes the data flow.
    • Operator Fusion: Combines multiple small operations into a single large kernel to reduce memory access and execution overhead.
    • Data Layout Optimization: Adjusts tensor layouts to match the NPU memory architecture, improving data access efficiency.
  • Quantization

    Computational precision is adjusted to match the NPU architecture, improving both performance and memory efficiency. In the case of EVA, we optimized the model to ensure stable performance under an FP16-based inference environment.

  • vLLM Integration and Validation

    The optimized model is deployed within the vLLM-RBLN serving framework. Key metrics such as TTFT (Time To First Token) and throughput are measured and validated against GPU-based environments.


2. EVA Application Optimization and Technical Challenges

After porting the foundation model, the next step is deploying the actual service layer—the EVA Application. During this stage, we have been implementing the following optimization roadmap.

  • EVA Vision Optimization (1:1 Mapping & Batching)

    We mapped NPU cores and Vision Workers in a 1:1 configuration, eliminating context-switching overhead. In addition, by applying continuous batching techniques, we are building a foundation capable of processing data from hundreds of cameras in real time without latency.

  • EVA Agent Optimization (Reducing VLM Load)

    The input resolution of the Vision-Language Model (VLM) was standardized to 1280×720, and a two-stage reasoning architecture was applied to minimize unnecessary VLM calls. This immediately reduces the computational load on the Vision Encoder, which is one of the most expensive components in the pipeline.

  • System Memory Management and KV Cache Optimization

    In collaboration with Rebellions, we analyzed the memory usage patterns of vLLM-RBLN instances and improved resource utilization using a page-based memory management structure. This optimization allows the system to process a larger volume of visual data reliably within the same hardware environment.

  • Parallel Processing of the VLM Vision Encoder

    We are also improving the parallel execution architecture of the Vision Encoder, which accounts for a large portion of the computation in VLM inference. By optimizing how Vision Encoder operations are distributed across multiple NPU cores, we aim to significantly improve VLM serving throughput.


3. Conclusion: Evolving from PoC to a Production-Ready Solution

We are continuously addressing technical challenges discovered during stress testing while refining optimizations that maximize hardware utilization. From parallel processing of the Vision Encoder through close collaboration with Rebellions to the development of an intelligent scheduler within the EVA platform, every step is part of transforming “EVA on NPU” from a simple proof-of-concept (PoC) into a production-ready solution.

Ultimately, the success of AI services depends on meeting three essential conditions: economic efficiency, scalability, and service quality. EVA will continue to actively adopt the latest NPU technologies and present a global standard for Physical AI platforms—delivering the most competitive TCO and outstanding performance for our customers.

Multi-Frame Based VLM Detection: Moving Beyond Single Image Limits to Temporal Context

· 7 min read
Gyulim Gu
Gyulim Gu
Tech Leader
Seongwoo Kong
Seongwoo Kong
AI Specialist
Taehoon Park
Taehoon Park
AI Specialist
Jisu Kang
Jisu Kang
AI Specialist

Is a Single Frame Enough?

Recently, Vision-Language Models (VLMs) have demonstrated exceptional performance in understanding individual images. Large-scale multimodal models have theoretically expanded the possibilities of multi-frame reasoning by introducing architectures that process multiple images alongside text prompts.

However, real-world industrial detection scenarios are far more complex than controlled research environments. Problems that seem straightforward with a single frame often lead to various false positives and edge cases in production.

Consider a scene where a person is lying on the floor. Looking at that single moment, it is easy to categorize it as a "collapse." But what if the previous frame showed them stretching, or simply changing posture while working?

In nighttime environments, lens flares, light reflections, or glare can mimic the color patterns of fire, leading to false fire detections when based on a single image. When even humans find it difficult to be certain from a single snapshot, providing a model with only one frame inevitably creates structural limitations.



These cases all share a common problem: a "lack of context."




Time is the Most Powerful Context

Many detection scenarios inherently rely on a temporal flow.

For instance, "loitering" can only be defined by observing a pattern of staying in the same space for a certain period. Similarly, "long-term abandonment" requires the condition that an object remains unchanged for a specific duration after being placed.

Attempting to solve these problems with a single frame is structurally difficult because the focus must be on "change," not just "state."

We have categorized this into three levels of context:

  • Single Image-based Judgment
  • Short-term Multi-image Contextual Judgment (Momentary context)
  • Temporal Judgment (Involving long-term flow)

In actual operating environments, these three levels coexist. Some scenarios are sufficient with a single frame, some require consecutive frames at intervals of a few seconds, and others require tracking a flow over tens of seconds.




EVA's Multi Frame Manager

In EVA, user-defined scenarios are not treated as simple text conditions. The system analyzes the "level of context" required by each scenario and determines an appropriate frame collection strategy.

For example, "fainting detection" requires multi-images covering a few seconds before and after the event, rather than a single frame. In contrast, "long-term abandonment" requires continuous frame collection over a specific duration based on a sliding window.

The module responsible for this process is the Multi Frame Manager. This module dynamically determines the following based on the scenario characteristics:

  • Number of frames required
  • Collection intervals
  • Retention time
  • Event trigger expansion

Collected images are not simply listed. They are delivered to the VLM in a clearly sorted chronological order, accompanied by system prompts that guide the model to compare changes between frames.




Multi-Image Based VLM Inference Strategy

When multi-frame input is received, the VLM does more than just return independent detection results. In EVA, we designed the inference structure to interpret multi-images as a continuous temporal context rather than an independent set of images.

To achieve this, frames are delivered to the model using the following strategies:

  • Chronological Frame Alignment: Constructs time-series data from past to present to understand causality.
  • Comparative System Prompts: Uses instructions like "Identify changes compared to the previous frame" to analyze inter-frame correlations.
  • Temporal Reasoning: Derives logical conclusions based on state changes over time rather than fragmented snapshot judgments.

Case Study: The Power of Temporal Context in Reducing False Positives

The following case demonstrates how fragmented information from a single frame is accurately corrected through the "context" of multiple frames.



  • Single Image: A person is stationary in a low, prone position. A VLM looking only at this moment is highly likely to misinterpret the situation as "Collapse."
  • Multi-Image: In the subsequent frames, subtle movements are captured—the person moves their arms to operate a phone and tilts their head to look at the screen.
  • Result: Through Temporal Reasoning, EVA correctly concludes this is "Sitting and using a phone detected".

The core idea is to guide the model to understand the situation by comparing differences between frames, rather than judging each frame individually.

For high-risk detections like fainting, the model undergoes a process of Progressive Situation Refinement:

  1. Initial State Identification: Identifying the target object and initial visual features (e.g., prone posture).
  2. Dynamic Change Detection: Tracking meaningful changes in body angles or voluntary movements compared to previous frames.
  3. Consistency Verification: Determining if the posture is a forced freeze due to impact or involves intentional actions.
  4. Final Context Determination: Distinguishing between visual noise with similar patterns and actual events.

This Temporal Reasoning structure significantly reduces false positives in edge cases that plague single-image systems, providing much more stable results in real-world operations.


CategorySingle ImageMulti Image
AccuracyPrecisionRecallAccuracyPrecisionRecall
No PPE0.660.870.680.760.870.82
No Mask (Working)0.940.690.540.930.760.52
Loitering0.490.920.330.630.850.64
Fainting0.871.00.360.961.00.82

Ultimately, EVA’s multi-frame inference structure is not just about increasing the number of input images—it is an approach that directly integrates temporal change into the model's reasoning process.




The Cost of Multi-Frame: Computational Overload

Improvements in accuracy come with a price.

While multi-frame reasoning allows for more visual information, it also leads to increased computational costs. In multimodal models, image inputs are generally converted into embeddings via a Vision Encoder before being passed to the LLM, a process that is relatively resource-intensive.

Specifically, multi-frame analysis often encounters the following:

  • Identical or very similar images repeating in a sequence.
  • Multiple requests referencing the same camera frame.
  • Multiple queries performed on the same set of images.

In these cases, if the Vision Encoder processes the same image repeatedly, it creates unnecessary overhead.

In EVA, we developed a structure that maximizes the Encoder Cache feature provided by vLLM to solve this. vLLM offers an Encoder Cache Manager that allows the system to cache and reuse Vision Encoder results during multimodal processing.

By leveraging this, we can reuse previously generated encoder embeddings for identical image inputs, eliminating the need to repeat Vision Encoder operations. EVA applies a request management structure at the Agent Layer to effectively utilize this caching.


The Agent coordinates requests in the following ways:

  • Organizing requests so that identical image inputs can be reused.
  • Managing requests based on image units to enable cache hits.
  • Optimizing request flow to prevent redundant encoding.

This allows us to minimize Vision Encoder operations and utilize GPU resources more efficiently, even in a multi-frame analysis environment.




Conclusion

Multi-frame based VLM inference is an approach that significantly improves situational understanding and detection accuracy compared to single-image analysis.

However, as the number of frames increases, the computational load on the Vision Encoder grows significantly. Therefore, it is crucial to design a system that balances performance gains with computational efficiency and infrastructure costs.

EVA addresses this by actively utilizing vLLM's Encoder Cache and managing requests through the Agent Layer. Through this architecture, we maintain high inference performance while reducing unnecessary computations, continuously improving GPU efficiency and infrastructure operating costs.

This feature is available starting from EVA v2.6.0.

The Future of AI Services Shown by OpenClaw

· 4 min read
Daniel Cho
Daniel Cho
Mellerikat Leader

Recently, OpenClaw has been generating significant buzz in the AI community. Running in local environments such as a Mac mini, this service interprets a user’s screen in real time and directly controls various applications — signaling an important shift in how we evaluate AI.

The competitive edge in AI is no longer defined by “how large or powerful a foundation model is,” but rather by “how effectively that model can perform complex tasks in real-world applications.”


A Paradigm Shift: From Performance to Execution

  • Old Paradigm: “How intelligent is it?” Until now, the AI industry has focused heavily on the scale and performance of foundation models. Large language models such as GPT-4, Claude, and Gemini competed on parameters, dataset size, and benchmark scores. The central question was: “How smart is the AI?”

  • New Paradigm: “How much work can it actually perform?” OpenClaw introduces a fundamentally different question: “How effectively can the model perform complex tasks in real-world environments?” AI value is no longer measured by raw intelligence alone, but by its ability to execute within real computing environments.

Teaching VLMs to Multitask: Enhancing Situation Awareness through Scenario Decomposition

· 8 min read
Hyunchan Moon
Hyunchan Moon
AI Specialist

At the core of EVA lies the ability to truly understand critical situations that occur simultaneously within a single scene—such as fires, people falling, or traffic accidents—without missing any of them. However, no matter how capable a Vision-Language Model (VLM) is, asking it to reason about too many things at once leads to a sharp degradation in cognitive performance.[2,3]

In this post, inspired by the recent text-to-video retrieval research Q₂E (Query-to-Event Decomposition)[1], we introduce Scenario Decomposition, a technique that enables VLMs to deeply understand complex, multi-scenario situations within a single frame.

Physical AI Implemented with EVA

· 3 min read
Gyulim Gu
Gyulim Gu
Tech Leader

When Can AI Intervene in the Real World?

Accidents in industrial environments happen without warning. Moments such as a worker collapsing, an arm getting caught in machinery, or a fire breaking out usually occur within seconds.

Physical AI should not stop at recognizing these moments. It must be capable of translating perception into physical action on site.

In this post, we walk through a LEGO-based simulation to show how EVA detects incidents and how its decisions are connected to real equipment actions as a single, continuous flow.




Simplifying Industrial Scenarios with LEGO

Instead of replicating complex industrial environments in full detail, we simplified accident scenarios using LEGO.

We designed independent scenarios for:

  • a worker collapsing,
  • an arm being caught in equipment,
  • and a fire breaking out.

Arm caught in equipment – conveyor belt stops and warning light activates

EVA: A New Standard for Safety Management Beyond Physical Sensors

· 3 min read
Daniel Cho
Daniel Cho
Mellerikat Leader

EVA Accelerates the Golden Time for Fire Response

Securing the “golden time” during a fire incident in manufacturing facilities is one of the most critical factors in protecting both human life and physical assets. Traditional fire detection systems have long relied on physical sensors, but camera-based intelligent detection technologies are now rapidly replacing this role.

In this post, we analyze EVA’s smoke detection performance through a real-world validation test conducted at an LG Electronics facility and examine the technical significance of the results.




Field Validation Test: 8 Seconds vs. 38 Seconds

A smoke detection test simulating a real fire scenario was conducted at an LG Electronics production site. The core objective of this test was to compare the detection speed between the existing smoke detectors and the newly introduced EVA system.

The results were highly encouraging. Based on the moment when smoke began to rise, the average response times of each system were as follows:

EVA: Smoke detected approximately 8 seconds after occurrence

Conventional smoke detector: Smoke detected approximately 38 seconds after occurrence

As a result, EVA identified and propagated the hazardous situation more than four times faster than conventional smoke detectors. This 30-second difference represents a decisive window that can determine the success or failure of initial fire suppression.

The Synergy of EVA and Workflow Builder

· 6 min read
Gyulim Gu
Gyulim Gu
Tech Leader

Beyond Observation: AI That Takes Action

The core challenge for AI today is no longer just analyzing data or describing scenes. A truly intelligent system must be able to drive meaningful actions in the physical world or corporate operational systems based on its analysis.

EVA is now moving beyond the role of 'eyes' and 'brain' that perceive visual information and judge situations, to join with the 'hands'—the Workflow Builder. This marks the completion of an End-to-End automation structure that moves past passive, notification-centric monitoring to independently judging site conditions and solving problems.


Performance Enhancement through Instruction Tuning Based on User Feedback Data

· 12 min read
Jaechan Lee
Jaechan Lee
POSTECH
Yura Shin
Yura Shin
AI Specialist

This work is a collaborative research effort with Minjoon Son (advised by Prof. Youngmyung Ko) as part of the "Campus: Beyond Safety to Intelligence – Postech Living Lab Project with EVA"


🎯 Introduction: Shifting Feedback from 'Retrospective Correction' to 'Cognitive Enhancement'

When EVA makes judgments based on images, operators often provide specific feedback like: "This is indeed a safety vest. Why did it get confused?" or "Shouldn't there be an alert here?" This feedback contains not just the right or wrong answer, but also the human reasoning and context behind the judgment.

Previously, EVA utilized this feedback by storing it in a separate Vector DB and using it to adjust the Alert status when similar situations occurred. While this approach offered the advantage of quick application, it had a structural limitation: it did not improve the model's intrinsic reasoning capability and merely retrospectively filtered errors.

To fundamentally address this issue, we completely changed our approach. We reconstructed user feedback not as simple error reports, but as Instruction Data that the model can directly use in its inference process to strengthen its Visual Reasoning capability.

This article will focus on how VLM-based Instruction Tuning utilizing user feedback data overcomes the limitations of the previous Vector DB-centric approach and improves the model's visual reasoning performance.

From Image to Language, From Language to Reasoning: Boosting VLM Performance with Camera Context

· 7 min read
Minjun Son
Minjun Son
POSTECH
Jisu Kang
Jisu Kang
AI Specialist

This work is a collaborative research effort with Minjoon Son (advised by Prof. Youngmyung Ko) as part of the "Campus: Beyond Safety to Intelligence – Postech Living Lab Project with EVA"


📝 Introduction: Making User Queries Smarter: Enhancing Language with Image Context

EVA is a system that detects anomalies using hundreds to thousands of smart cameras. We utilized VLM/LLM to automatically infer the camera context and embedded this into the prompt, creating a camera-context aware anomaly detection pipeline that reflects the situation of the target image. By leveraging the camera context extracted from a single frame as prior knowledge for the VLLM, we confirmed a meaningful improvement in accuracy and deeper interpretability compared to the existing baseline.