Browser-based explorer for Knowm's kT-RAM neural lane emulator, with live controls, visual gauges, noisy read sampling, and an optional beginner tutorial.
This project wraps ktram-neural-core, the open Python emulator of the 2-1 kT-RAM neural lane described in Knowm's Neural Lane Emulator article. The goal is to make the emulator easier to explore without living entirely inside a Python prompt or notebook.
The current UI focuses on the first useful surface: one lane, one address space, one differential pair selected by AAT (0,).
- Creates a single-synapse kT-RAM neural lane using
ktram-neural-core - Lets you reset the core with different model, init, seed, and read-noise settings
- Runs individual two-letter instructions such as
FF,FFLV,RH, andFL - Runs simple read/feedback cycles
- Samples noisy sub-threshold reads
- Shows live activation, conductances, magnitude, history, visual gauges, and sample splits
- Includes a skippable beginner tutorial for new kT-RAM users
First, download the project with Git and enter the project folder:
git clone https://github.com/hfsc2004/kT-emulator.git
cd kT-emulatorThen start the app for your platform. The launcher creates .venv, installs what the app needs, starts the local UI server, and opens the interface in your default browser.
| Platform | Start the UI |
|---|---|
| Linux | ./start.sh |
| macOS | ./start.command |
| Windows | start.bat |
To start the server without opening a browser:
./start.sh --no-browser./start.command --no-browserstart.bat --no-browserTo stop the UI, press Ctrl+C in the terminal that started it.
Click Tutorial in the top bar to open an optional beginner path. The first tutorial slice walks through a balanced synapse, conductance reads, simple feedback, noisy low-voltage sampling, and magnitude as stored evidence. Visual cards show the Ga/Gb balance, a -1 to +1 weight gauge, and the positive/negative split from noisy reads.
The tutorial is still early. It is designed to stay skippable so experienced users can continue using the main emulator controls directly.
| Task | Linux | macOS | Windows |
|---|---|---|---|
| Open a Python shell | ./start.sh shell |
./start.command shell |
start.bat shell |
| Run the example | ./start.sh example |
./start.command example |
start.bat example |
| Show help | ./start.sh help |
./start.command help |
start.bat help |
If the app does not start, check the local environment:
| Platform | Check environment |
|---|---|
| Linux | ./start.sh doctor |
| macOS | ./start.command doctor |
| Windows | start.bat doctor |
To install dependencies without starting the UI:
| Platform | Install only |
|---|---|
| Linux | ./start.sh setup |
| macOS | ./start.command setup |
| Windows | start.bat setup |
To force dependency installation again:
| Platform | Force install |
|---|---|
| Linux | ./start.sh install |
| macOS | ./start.command install |
| Windows | start.bat install |
The emulator is installed from the chapter-4b branch of Knowm's repository:
git+https://github.com/knowm/ktram-neural-core.git@chapter-4b#subdirectory=python
The Python package name is ktram-neural-core; the import name is ktram_neural_core.
This project wraps Knowm Inc.'s ktram-neural-core package and follows the emulator work published on Knowm's Blog, including The Neural Lane Emulator. The installed package metadata reports:
Author: Knowm Inc.
License: MIT
That MIT license label applies to the emulator software package. It does not grant rights to Knowm hardware, devices, patents, or methods modeled by the emulator. Knowm's blog text and images are separate copyrighted materials unless otherwise noted.
See NOTICE.md for the project notice.

