Skip to content
This repository has been archived by the owner on Nov 14, 2023. It is now read-only.

iosifache/notebooks

Repository files navigation

Notebooks πŸ““

Description πŸ–ΌοΈ

This repository holds miscellaneous Jupyter notebooks, for domains such as data analysis, machine learning, and biometric systems.

The used datasets were not uploaded as most of them are bulky (especially the ones containing images or voice recordings). So before running a notebook, ensure that the required files are downloaded and placed directly in the dataset folder or its corresponding sub-folder from the dataset folder.

Setup πŸ”§

  1. Create an environment: python3 -m venv environment
  2. Activate the environment: source environment/bin/activate
  3. Install the required packages: pip3 install -r requirements.txt

Folder Structure πŸ“

notebooks                               root folder
β”œβ”€β”€ datasets                            folder with data sets used in the notebooks
β”‚   └── ...
β”œβ”€β”€ helpers                             folder with helper functions, mostly third-party
β”‚   └── ...
β”œβ”€β”€ images                              folder with images used in the notebooks
β”‚   └── ...
β”œβ”€β”€ models                              folder with pre-trained or exported models used in
β”‚   β”‚                                   the notebooks
β”‚   └── ...
β”œβ”€β”€ others                              folder with miscellaneous files
β”‚   └── generate_requirements.sh        Shell script for generating the requirements.txt file
β”œβ”€β”€ sounds
β”‚   └── ...
β”œβ”€β”€ *.ipynb                             notebooks
β”œβ”€β”€ requirements.txt                    Python 3 dependencies
└── README.md                           this file