Skip to content

Source code for the article "Accelerating neural network training by data splitting".

License

Notifications You must be signed in to change notification settings

intersog-developer/nn-data-splitting-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Example of neural network training with data splitting, written in Rust.

Demonstrates an ability to accelerate neural network training by splitting the training data. In this case the same model instances are trained on own data parts in different threads, and resulting application runs an ensemble of models.

Build:

cargo build --release --example single_training
cargo build --release --example parallel_training

Run:

./target/release/examples/single_training
./target/release/examples/parallel_training

About

Source code for the article "Accelerating neural network training by data splitting".

Topics

Resources

License

Stars

Watchers

Forks

Languages