https://github.com/wdevore/evotron-dart
A evolution based SNN written in Dart
https://github.com/wdevore/evotron-dart
Last synced: about 1 year ago
JSON representation
A evolution based SNN written in Dart
- Host: GitHub
- URL: https://github.com/wdevore/evotron-dart
- Owner: wdevore
- License: mit
- Created: 2024-06-01T20:18:13.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-19T03:42:55.000Z (almost 2 years ago)
- Last Synced: 2024-07-20T05:56:51.094Z (almost 2 years ago)
- Language: Dart
- Size: 94.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# EvoTron-Dart
A evolution based SNN written in Dart
# Create new project
You can create a new project via Flutter. Using *dart*
Example:
```sh
dart create basic_shell
```
Also, make a new launch.json entry
```json
{
"name": "EvoTron",
"cwd": "/media/iposthuman/Extreme SSD/Development/Dart/EvoTron-Dart/",
"program": "basic_shell/bin/main.dart",
"request": "launch",
"type": "dart",
"args": ["standard.json"]
}
```