This template made by Zherish Galvin Mayordo is tailored for data enthusiasts. The modules for this template were originally used for a specific deep learning study that were redesigned to be flexible and modular.
- Make sure to install Anaconda or Miniconda before using this template. You can install either of them at this link.
- Create a new environment for this template using the command
conda env create -f environment.yml -n [ENVIRONMENT_NAME]
, for CUDA-enabled systems, ORconda env create -f environment-noncuda.yml -n [ENVIRONMENT_NAME]
, for non-CUDA-enabled systems. - Activate the new environment:
conda activate [ENVIRONMENT_NAME]
. - Verify that the new environment was installed correctly:
conda list
- Once verified, run
setup.cfg
usingpip install .
Note: This package already includes tensorflow and scikit-learn.
Note: This package is created using Windows 10 operating system.
Note: You can also verify if tensorflow is installed properly using the command: python -c "import tensorflow as tf; print(tf.config.list_physical_devices())"
If you want to reach out to me, here's my contact details:
Name: Zherish Galvin Mayordo
Email: zherishatbusiness@gmail.com
LinkedIn: https://www.linkedin.com/in/zgmayordo
- [fix]: For bug fixes.
- [update]: For updating code's functionality.
- [feat]: For adding new feature/s.
- [style]: For changes that do not affect the code's functionality (e.g., formatting, spacing).
- [docs]: For documentation changes.
- [refactor]: For code refactoring without changing its external behavior.
- [perf]: For performance improvements.
- [chore]: For maintenance tasks, tooling changes, or other non-code changes.
- [dependency]: For updates or changes related to dependencies.
- [security]: For security-related changes.
- [cleanup]: For removing redundant code or files.
- [merge]: For merge commits.