Skip to main content
This release is 94 versions behind 0.155.24 — 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
4 months ago (0.121.0)
interface CrisprInterface
extends TagsInterface

Interface representing the structure of the CRISPR modification data.

Properties

Unique identifier for the CRISPR modification.

mode: "insert" | "append"

Mode of modification - can be either "insert" or "append".

optional
neurons: { uuid?: string; index?: number; type: "output" | "hidden"; squash: string; bias: number; comment?: string; }[]

Array of neurons to be modified or added.

synapses: { from?: number; fromRelative?: number; fromUUID?: string; to?: number; toRelative?: number; toUUID?: string; weight: number; type?:
"positive"
| "negative"
| "condition"
; comment?: string; }[]

Array of synapses to be modified or added.

Add Package

deno add jsr:@stsoftware/neat-ai

Import symbol

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

---- OR ----

Import directly with a jsr specifier

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