This release is 88 versions behind 0.155.18 — the latest version of @stsoftware/neat-ai. Jump to latest
@stsoftware/neat-ai@0.121.0Built and signed on GitHub ActionsBuilt and signed on GitHub Actions
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.
#!/bin/bash set -e deno outdated --update --latest deno fmt src test bench mod.ts docs deno lint --fix src test bench mod.ts rm -rf .trace .test .coverage # Use xargs to handle file list gracefully, with a larger batch size find src -name "*.ts" -print0 | xargs -0 -n 50 deno check find test -name "*.ts" -print0 | xargs -0 -n 50 deno check deno test \ --allow-read \ --allow-write \ --allow-net \ --trace-leaks \ --v8-flags=--max-old-space-size=8192 \ --parallel \ --coverage=.coverage \ --config ./deno.json \ --doc