Skip to content

kobfolson/building-energy-prediction

Repository files navigation

building-energy-prediction

This is the practical implementation for data preparation, modelling and visualisation of data that can be obtained from: https://drive.google.com/file/d/1qmfnSTE3LoFkyEgW5EOsEQJJm6SrvADg/view?usp=sharing

Setting Up a Python Virtual Environment for ML Project

  1. Prerequisites:

    • Python 3.x installed on your system
    • virtualenv or venv package (usually comes with Python 3.x)
  2. Create a Virtual Environment:

    • Using virtualenv:

      virtualenv venv
    • Using venv (Python 3.3+):

      python -m venv venv

    Replace venv with your preferred environment name.

  3. Activate the Virtual Environment:

    • On Windows:

      venv\Scripts\activate
    • On macOS and Linux:

      source venv/bin/activate
  4. Install Packages from a Requirements File:

    pip install -r requirements.txt
  5. To start the jupyter notebook:

    jupyter notebook
  6. To deactivate the virtualenv:

    deactivate

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published