Skip to content

Latest commit

 

History

History
30 lines (27 loc) · 1.73 KB

README.md

File metadata and controls

30 lines (27 loc) · 1.73 KB

Training

This project should contain all our training code for the model car project.

Standards

This is a version of the repository that follows PEP8 guidelines, please comment on GitHub code, file an issue, or correct any errors with a pull request.

Contributing

Contributions should be made using the GitHub Standard Pull Request Workflow. To set this up do the following:

  1. Fork this repository on GitHub (press the fork button)
  2. Clone your forked repository (git clone ...)
  3. Add this repository as upstream
git remote add upstream https://github.com/bddmodelcar/training.git
  1. Make your changes, commit and push locally to your fork of the repository.
  2. Sync changes to the remote repository (Should be done intermittently throughout work)
git fetch upstream
git merge upstream/master
  1. When you are ready to push your changes globally, open your fork in GitHub and press the Pull Request button. If you are a collaborator, you can merge the pull request yourself, but it is suggested to let others review your changes and merge.

Save Files

Save files are managed by the Git LFS system, any file that ends with .infer or .weights will be managed by this system. If you have not installed Git LFS, these save files will not be downloaded and a plain text file will exist in their place. If you wish to create or use some of these save files you can do the following:

  1. Download and install the Git LFS command line extension
  2. git lfs install
  3. echo "export GIT_LFS_SKIP_SMUDGE=1" >> ~/.bashrc
  4. source ~/.bashrc
  5. Work normally
  6. If you want to download GIT LFS files rather than having pointers than you can run git lfs pull