Skip to main content
This release is 64 versions behind 0.153.7 — the latest version of @stsoftware/neat-ai. Jump to latest

Built and signed on GitHub Actions

NEAT Neural Network. This project is a unique implementation of a neural network based on the NEAT (NeuroEvolution of Augmenting Topologies) algorithm, written in DenoJS using TypeScript.

This package works with Deno
This package works with Deno
JSR Score
100%
Published
2 months ago (0.121.0)
interface CreatureExport
extends CreatureCommon

Export representation of a creature, including its synapses and neurons.

Properties

synapses: SynapseExport[]

List of synapses in the creature.

neurons: NeuronExport[]

List of neurons in the creature.

Add Package

deno add jsr:@stsoftware/neat-ai

Import symbol

import { type CreatureExport } from "@stsoftware/neat-ai";

---- OR ----

Import directly with a jsr specifier

import { type CreatureExport } from "jsr:@stsoftware/neat-ai";