Training and Evaluation

Virtual Environment Setup

Effective containerization is important when it comes to running machine learning models as there can be conflicting dependencies. You can either use a Virtual Environment or Conda.

Virtual Environment Installation and Setup

  1. Install the virtual environment package:
$ sudo apt-get install python3-venv
  1. Create a virtual environment:
$ python3 -m venv ~/act  # Creates a venv "act" in the home directory, can be created anywhere
  1. Activate the virtual environment:
$ source act/bin/activate

Conda Setup

  1. Create a virtual environment:
$ conda create -n aloha python=3.8.10
  1. Activate the virtual environment:
$ conda activate aloha

Hugging Face for Dataset storage

To understand how to utilize Hugging Face for Uploading and Downloading Datasets