├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── LICENSE.md ├── PYADLX_SETUP_GUIDE.md ├── PYZE_SETUP_GUIDE.md ├── README.md ├── WMI_SETUP_GUIDE.md ├── requirements.txt ├── screenshots ├── GUI1.png ├── GUI2.png ├── GUI3.png ├── GUI4.png ├── GUI5.png ├── GUI6.png ├── cli1.png ├── cli2.png └── cli3.png ├── tensortune_cli.py ├── tensortune_core.py ├── tensortune_examples.py ├── tensortune_gui.py └── tensortune_install.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viceman256/TensorTune/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viceman256/TensorTune/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viceman256/TensorTune/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viceman256/TensorTune/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PYADLX_SETUP_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viceman256/TensorTune/HEAD/PYADLX_SETUP_GUIDE.md -------------------------------------------------------------------------------- /PYZE_SETUP_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viceman256/TensorTune/HEAD/PYZE_SETUP_GUIDE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viceman256/TensorTune/HEAD/README.md -------------------------------------------------------------------------------- /WMI_SETUP_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viceman256/TensorTune/HEAD/WMI_SETUP_GUIDE.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viceman256/TensorTune/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshots/GUI1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viceman256/TensorTune/HEAD/screenshots/GUI1.png -------------------------------------------------------------------------------- /screenshots/GUI2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viceman256/TensorTune/HEAD/screenshots/GUI2.png -------------------------------------------------------------------------------- /screenshots/GUI3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viceman256/TensorTune/HEAD/screenshots/GUI3.png -------------------------------------------------------------------------------- /screenshots/GUI4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viceman256/TensorTune/HEAD/screenshots/GUI4.png -------------------------------------------------------------------------------- /screenshots/GUI5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viceman256/TensorTune/HEAD/screenshots/GUI5.png -------------------------------------------------------------------------------- /screenshots/GUI6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viceman256/TensorTune/HEAD/screenshots/GUI6.png -------------------------------------------------------------------------------- /screenshots/cli1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viceman256/TensorTune/HEAD/screenshots/cli1.png -------------------------------------------------------------------------------- /screenshots/cli2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viceman256/TensorTune/HEAD/screenshots/cli2.png -------------------------------------------------------------------------------- /screenshots/cli3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viceman256/TensorTune/HEAD/screenshots/cli3.png -------------------------------------------------------------------------------- /tensortune_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viceman256/TensorTune/HEAD/tensortune_cli.py -------------------------------------------------------------------------------- /tensortune_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viceman256/TensorTune/HEAD/tensortune_core.py -------------------------------------------------------------------------------- /tensortune_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viceman256/TensorTune/HEAD/tensortune_examples.py -------------------------------------------------------------------------------- /tensortune_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viceman256/TensorTune/HEAD/tensortune_gui.py -------------------------------------------------------------------------------- /tensortune_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viceman256/TensorTune/HEAD/tensortune_install.py --------------------------------------------------------------------------------