Skip to main content

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
9 hours ago (0.155.18)
interface CreatureTrace

Trace representation of a creature, including detailed trace information for synapses and neurons.

Properties

synapses: SynapseTrace[]

List of synapse traces in the creature.

neurons: NeuronTrace[]

List of neuron traces in the creature.

Add Package

deno add jsr:@stsoftware/neat-ai

Import symbol

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

---- OR ----

Import directly with a jsr specifier

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