mkingopng / electricity_demand_forecasting

initial commit
0 stars 0 forks source link

Welcome to ZZSC9020 GitHub repository for group Team-O

This GitHub repository is the main point of access for students and lecturers of the ZZSC9020 capstone course.

In this repository, you will find the data to start developing your project. Also, we will use the repository to share code, documentation, data, models and other resources between the group members and course lecturers.

Complete the information below regarding your group.

Group and project information

Group members and zIDs

Brief project description

to improve the accuracy of short-term electricity demand forecasting by:

Repository structure

The repository has the following folder structure:

Poetry

Poetry is a Python dependency manager. It takes advantage of PEP518, which introduces pyproject.toml as a new way to specify build requirements. The goal was to make the replicability of developers' environments easy to replicate, sync and maintain across team members.

Basic Use:

  1. install poetry on your computer, by following the instructions here

  2. open a terminal and run:

    cd path/to/project/team-O
    poetry init

    poetry will then configure your environment based on the pyproject.toml in the repository.

  3. to install a new package run:

    poetry add <package-name>
  4. to update your envirnnment to sync with repository, or to update a dependency to the latest version run:

    poetry update