snehh / Musically-DL

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Musically-DL

Automatic music generation using Neural Networks, with minimum human interaction.

Prerequisites

  • Install Python
  • Install Python Package Manager (pip/pip3):
    apt-get install python-pip
    
    apt-get install python3-pip
    

About DWOC

DWoC is a winter long program organised by Delta Force, the coding club of NIT Trichy. With an aim to support and improve the culture of open source software around us, this serves as a platform for young student developers (or even starters) to hone their technical skills by working on projects of their interests. We hope this encourages collabrative experiences and allows students from all backgrounds to contribute to quality technical projects from diverse fields. For more information, visit DWoC.

Contributing Guidelines

Steps to contribute

  1. Fork the project.
  2. Clone the your fork.
git clone https://github.com/<YOUR-USERNAME>/Musically-DL
  1. Add a new remote to upstream
git remote add upstream https://github.com/snehh/Musically-DL
  1. Create a new branch from the current branch
git checkout -b <YOUR-NEW-BRANCH>
  1. Work on the new branch.

  2. Add or change documentation as needed.

  3. Before pushing the code, pull from upstream and check if there are any conflicts. If so solve them and then push the code.

git pull --rebase upstream master
  1. Push the code to the origin
git push origin <YOUR-NEW-BRANCH>
  1. From your forked repository, open a new pull request to the project's development branch.

  2. Once the pull request is approved and merged, you can pull the changes from upstream to your local repository and delete your extra branch(es).

About