A feature-rich, Neural Architecture Search framework based on Artificial Bee Colony optimization
HiveNAS (preprint) is a modular NAS framework that can find and optimize a neural architecture with state-of-the-art performance.
The Python package is hosted on the Python Package Index (PyPI).
The latest published version of HiveNAS can be installed using
pip install HiveNAS
Simply clone the entire repo and extract the files in the HiveNAS
folder, then import them into your project folder.
Or use one of the shorthand methods below
cd
into your project directory- Use
sparse-checkout
to pull the library files only into your project directorygit init HiveNAS cd HiveNAs git remote add -f origin https://github.com/ThunderStruct/HiveNAS.git git config core.sparseCheckout true echo "HiveNAS/*" >> .git/info/sparse-checkout git pull --depth=1 origin master
- Import the newly pulled files into your project folder
cd
into your project directorycheckout
the library filessvn checkout https://github.com/ThunderStruct/HiveNAS/trunk/HiveNAS
- Import the newly checked out files into your project folder
Detailed examples and the full API docs are hosted on Read the Docs.
This project is licensed under the MIT License - see the LICENSE file for details