Skip to main content
Home

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
94%
Published
2 days ago (0.167.6)
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.

New Ticket: Report package

Please provide a reason for reporting this package. We will review your report and take appropriate action.

Please review the JSR usage policy before submitting a report.

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";