One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
"""Better Exceptions and Loguru | |
Metis Investigation by Moritz Eilfort | |
January 28th, 2019 | |
Example code for presentation purposes. | |
Code: https://gist.github.com/JimFawkes/76a649c7bdf8bfbbc2b2051c98995789 | |
Summary: https://gist.github.com/JimFawkes/e5f767288e6d8e2df8fa53b5862db9d6 | |
""" |
/* | |
##Device = Desktops | |
##Screen = 1281px to higher resolution desktops | |
*/ | |
@media (min-width: 1281px) { | |
/* CSS */ | |
""" | |
Minimal character-level Vanilla RNN model. Written by Andrej Karpathy (@karpathy) | |
BSD License | |
""" | |
import numpy as np | |
# data I/O | |
data = open('input.txt', 'r').read() # should be simple plain text file | |
chars = list(set(data)) | |
data_size, vocab_size = len(data), len(chars) |
#tl;dr
pre: assuming you have forked a repo and cloned your fork to your computer
git remote add [maintainer's name] [paste URL here]
git fetch --all
git branch --track [maintainer's name]_[branch] [remote name from step 1]/[branch you want to track]
At this point you may watch to checkout to your newly create branch and issue a git pull
command.