bullet_lib

Crates.iobullet_lib
lib.rsbullet_lib
version1.0.0
sourcesrc
created_at2024-03-17 22:18:21.533661
updated_at2024-03-17 22:18:21.533661
descriptionNeural Network Trainer for 2-Player Games.
homepage
repositoryhttps://github.com/jw1912/bullet
max_upload_size
id1176863
size171,497
Jamie Whiting (jw1912)

documentation

README

bullet

A CUDA/CPU NN Trainer, used to train NNUE-style networks for akimbo.

Also used by many other engines, including:

Currently Supported Games:

  • Chess
  • Ataxx

Raise an issue for support of a new game.

Usage

Import the crate with

bullet = { package = "bullet_lib", features = ["cuda"] }

Check out the wiki and examples to see how to use the crate.

Utilities

You can build bullet-utils with cargo b -r --package bullet-utils, to do the following:

  • Convert Data
  • Interleave Multiple Data Files
  • Shuffle Data Files
  • Validate Data Files

Use ./target/release/bullet-utils[.exe] help to see specific usage.

Currently Supported Backends:

Default

CPU backend not intended for serious training use. It is suitable for training small networks or various utilities, such as loading nets to requantise them or test their output on specific positions.

CUDA

The "first class" supported backend. To compile to target CUDA you need to enable the cuda feature, as demonstrated in the wiki.

Commit count: 174

cargo fmt