Sovereign Intelligence.
From Software to Hardware — The Complete AI Full Stack.

Eulerwa Inc. opens every layer of AI development — from model training to hardware acceleration to autonomous agents — through CLI and open source.
EulerForge for training, EulerGo for Go AI research, EulerWeave for data, EulerAgent for execution, EulerPress for publishing, EulerNPU for hardware, EulerAtlas for robot learning, and model design with EulerStack.

EulerForge EulerWeave EulerStack EulerAgent EulerAtlas EulerNPU EulerGo EulerPress

EulerForge: an LLM fine-tuning toolkit that trains dense models in an MoE style

A research-oriented LLM fine-tuning framework that injects LoRA into HuggingFace models and lets you train a dense model as a Mixture-of-LoRAs or MoE Expert LoRA structure. On top of a familiar dense-SFT workflow, EulerForge adds Dense → MoE conversion and phase scheduling, so routing, expert specialization, and MoE stability can be studied reproducibly on a modest GPU budget. A single YAML preset carries you through SFT → DPO/ORPO → RM → PPO.

Learn More Tutorials (24) CLI Reference

Approach — a standardized MoE conversion path for research

EulerForge provides a standardized workflow for converting a dense model into an MoE-style trainable one, so experiments can be expressed in configuration rather than in glue code.

  • Dense → MoE conversion: one YAML switch — mixture_lora / moe_expert_lora
  • LoRA Handoff + Phase scheduling: staged unfreezing (router → LoRA → base FFN) for stable large-model fine-tuning
  • One preset = full pipeline: SFT → DPO/ORPO → RM → PPO in a single command sequence
  • Preflight + MoE stability validation: catches configuration errors before a single GPU cycle burns

4 injection strategies × 5 training paths

Injection Dense LoRA · Mixture LoRA · MoE Expert LoRA · Native MoE Expert LoRA
Training SFT · DPO · ORPO · RM · PPO
Backbones Qwen2/3 · Llama 2/3 · Gemma 3 · Gemma 4 (dense+MoE) · Mixtral
Quantized training nf4 / int4 / int8 (bitsandbytes)
Extras HF Export · Optuna grid/bayesian search · integrated benchmark · 5-language CLI

24 KO/EN tutorials + full CLI reference included

EulerWeave: The Data Engine

A comprehensive data processing system that bridges the gap between raw datasets and production-ready model training.

Learn More

Open Source: Data Preprocessing

Designed for researchers and developers to refine and analyze data in local environments.

  • Smart Analysis: Initial data profiling using local LLMs.
  • Recursive Filtering: Auto-generation and application of domain-specific filter classes.
  • Metric Computation: PPL, Loss, and MinHash computation for deduplication.
  • Quality Scoring: Noise filtering scores via BERT-based models.

Enterprise: Orchestration

Business-critical features for scaling from a single GPU to cluster-level operations.

  • Scale-Down Validation: Automated 1-GPU LoRA/MoE testing.
  • Resource Estimation: AI-powered GPU-hour and cloud cost calculation.
  • Parameter Tuning: Bayesian optimization and grid search automation.
  • MLOps Integration: End-to-end pipeline from training launch to result synthesis.

EulerStack: a modular YAML assembler for LLM architectures

A model assembler that lets you compose a hybrid LLM of any scale from a single YAML spec — mixing Attention, Mamba, RetNet, Hyena mixers with MoE FFN blocks. A 5-layer pipeline (DSL → Schema → IR → Compiler → CLI) runs validation and normalization, then emits a HuggingFace PreTrainedModel (config.json + model.safetensors) that EulerForge can pick up directly for training — so design → assembly → fine-tuning flow as one path.

Learn More

31 presets on two axes

15 arch_ presets (all ~2B, skill-level walkthrough) reproduce published architectures at a fixed budget, and 16 llm_ presets cover 4 sizes × 4 variants. Presets are starting points — tweak d_model and layer count to assemble a model of any size.

MixersAttention · Mamba · RetNet · Hyena
FFNMLP · Gated MLP (SwiGLU) · MoE (top-k routing)
Skill-level walkthroughbeginner (GPT-2/Llama) · intermediate (Mistral/Gemma2/Qwen) · advanced (Jamba/Samba/RetNet) · expert (MoE × mixer 2D design space)
Compile targetHuggingFace model directory or JSON runtime config

CLI & workflow

# Explore presets
eulerstack presets list
eulerstack presets show llm_2b_simple

# Validate spec (with realism report)
eulerstack validate --preset my_model.yml --report

# Build an HF model dir → train with eulerforge
eulerstack compile --preset my_model.yml --output-dir ./my_model

Three-stage validation (schema → cross-field compatibility → realism heuristics) catches design errors before compilation. All CLI messages are translated into 5 languages (ko/en/zh/ja/es).

EulerAgent: Deterministic CLI Framework

A local-first agentic framework with an 8-state machine, Pattern/Graph orchestrators, RAG, Long-Term Memory (SQLite), MCP integration, 30+ CLI commands, and a plugin system. Every action is logged, audited, and approved by humans.

Learn More

Human-in-the-Loop Security (HITL)

Philosophy: Every action by an agent that changes the world (file writes, shell execution, external calls) must be approved by a human.

  • 8-State Machine: CREATE → CONTEXT → PLAN → PROPOSE → APPROVE → EXECUTE → RESULT → FINALIZE.
  • Long-Term Memory (LTM): SQLite-based persistent memory store for user preferences and project context.
  • RAG Pipeline: Hybrid lexical/vector search with citation source tracking.
  • MCP Integration: Model Context Protocol for external tool and search provider connectivity.

Command Line Interface (CLI)

euleragent init
# Create and run an agent
euleragent new my-assistant --template personal-assistant
euleragent run my-assistant --task "Perform code refactoring"

# Audit and approve high-risk actions
euleragent approve list
euleragent approve accept [id] --execute

30+ commands across core, approval, RAG, memory, workflow, pattern, and MCP groups. Built for developers who want autonomous capabilities without sacrificing control and security.

EulerAtlas: 8-Domain Robot Behavioral Learning

A CLI-based imitation learning framework that trains policies from expert demonstrations and evaluates them in simulation. 4 classic domains (car, drone, humanoid, robot dog) and 4 industrial domains (mobile manipulation, warehouse AGV, smart farm agri-robot, shipyard crane) — 8 domains on a unified schema. 11 command groups including edge deployment, with a Domain Plugin architecture.

Learn More

8-Domain Unified Schema

All modules communicate consistently through fixed obs/action dimension schemas per domain.

Classic (01-04) Car 4/2 · Drone 6/3 · Humanoid 12/6 · Robot Dog 12/8
Industrial (05-08) Mobile Manipulation 18/8 · Warehouse AGV 14/4 · Agri-Robot 16/6 · Shipyard 20/9
Policy Models BC-MLP, BC-RNN, BC-CNN, ACT, Diffusion Policy
Levels L0 Toy · L1 Intermediate · L2 Advanced (real backend)

CLI & Domain Plugin

euleratlas init --role road --level 0 --out config.yml
euleratlas train -c config.yml
euleratlas sim rollout -c config.yml --episodes 3
euleratlas edge export --format onnx

# 11 command groups: init, train, sim, data, model, skill, deploy, scenario, validate, doctor, edge

11 command groups with Domain Plugin architecture for extensibility. Initialize, train, and run simulation rollout in 3 commands.

EulerNPU: NPU Inference Composition & Simulation Stack

An NPU inference stack that defines 123 operators across 13 groups with 10 data types, compiles spec.yaml to .npuart artifacts, and targets Zynq-7020 FPGA for hardware simulation. A single CLI covers the entire workflow from validation to deployment.

Learn More

Operator Set & Compilation

123 operators organized in 13 groups, supporting 10 data types. The compilation pipeline transforms spec.yaml into deployable .npuart artifacts.

Operators 123 operators in 13 groups (arithmetic, activation, reduce, etc.)
Data Types 10 dtypes (float32, float16, bfloat16, int8, uint8, etc.)
Compilation spec.yaml → validate → compile → .npuart
FPGA Target Zynq-7020 board support

CLI & Simulation

11 subcommands cover the entire NPU development workflow from validation to profiling and deployment.

Core validate, compile, run, sim
Analysis profile, explain, benchmark
Hardware board-smoke, calibrate, replay
Optimization compress-cache

EulerGo: a research platform for Go AI with a sense of style

A CLI research platform for Go AI, designed so that distinct personal styles (pungmyo, 기풍) can be learned, compared, and preserved on top of a strong shared skill layer. It is our research-side response to a long-running worry in the Go community — that, in the age of AI, every professional's moves seem to converge toward a single "correct" answer. EulerGo treats the individuality visible in the first ~50 moves as a learnable signal via a style latent and multi-algorithm comparison, aiming at a research environment where many characters coexist rather than one monolithic super-engine.

Learn More

A common skill layer + interchangeable style heads

9 base input channels and N style-latent channels are broadcast into the input tensor, so multiple "style heads" can coexist on one backbone and be trained or swapped — a reproducible way to treat the individuality of the first 50 moves as a learnable signal.

  • Style latent: 9 (base) + N (style) channels, backward-compatible
  • Self-improvement loop: selfplay → train → analyze → league → stronger style signal
  • Style Classifier v2: trained classifier for automatic style labeling and comparison

Multi-algorithm · leagues · distributed self-play

Swap the search algorithm like a knob for fair comparison.

Algorithms PUCT MCTS · Gumbel (Sequential-Halving) · QZero (searchless) · PGS (tree-free) · Native C++ MCTS · Random baseline
Evaluation Round-robin league + iterative ELO + bootstrap CIs
Board 9×9 / 19×19 (Chinese scoring, ko/superko, SGF)
Extensions Distributed selfplay (coordinator/worker) · web dashboard · Toga GUI app · i18n CLI (ko/en/zh/ja/es)

Designed as a research-side response to a long-running concern in the Go community.

EulerPress: Enterprise Document Translation

A Local-First CLI tool that precisely translates only prose text while perfectly preserving code blocks, math expressions, and URLs. From enterprise document localization to AI training JSONL data translation.

Learn More

Precision-Preserving Translation

  • Code/Math Preservation: Automatically identifies and preserves code blocks, inline code, LaTeX math, and URLs.
  • Multi-Format: Supports Markdown, HTML, Plain Text, and JSONL formats.
  • Glossary Management: Tavily-based domain glossary ensures consistent translations.

Local-First & AI Data

  • Local LLM: Ollama-based translation keeps confidential documents from leaving your network.
  • Training Data: Large-scale concurrent JSONL training data translation pipeline.
  • Quality Validation: Automatic checks for translation length ratio, math placeholders, and format integrity.

Resources & Library

Access specialized technical publications and the open-source ecosystem.

Publications

In-depth research books on quantum computing and AI architectures.

Open Source Ecosystem

Community tools for data processing and model orchestration.

Vertical AI Agents

Domain-specific solutions built on the Eulerwa stack.

Medical AI Advisor

A healthcare agent that provides personalized body condition analysis and nutrition-based "Food over Medicine" guidance.

Agentic Development Platform

An autonomous coding system that leverages EulerAgent to automate design, debugging, and internal software lifecycle management.

Eulerwa Principles

Technology exists to serve humanity

No Military Automation

We oppose the military automation of artificial intelligence. Technology must be used to protect life, not to take it — no technological achievement can take precedence over human safety.

Humanism & Democracy

Artificial intelligence must serve as a tool that elevates human dignity and strengthens democratic values. We oppose any use of AI that suppresses individual freedom or undermines democratic principles.

Usage Principles

All software, models, and services released by Eulerwa may not be used for purposes that violate these principles. We take our responsibility for how our technology is used seriously.

The Eulerwa Lifecycle

1. EulerStack (Design)
2. EulerForge (Model)
3. EulerWeave (Data)
4. EulerNPU (Inference HW)
5. EulerAtlas (Robot Learning)
6. EulerAgent (Execution)
7. EulerPress (Publishing)

Build Sovereign AI with Us

Open Source, Local-First, Human-Centric.

Contact Us