Skip to content

Instantly share code, notes, and snippets.

View DiogenisPanagiotis's full-sized avatar

Diogenis Panagiotis DiogenisPanagiotis

View GitHub Profile
@kunal732
kunal732 / Setup.txt
Last active April 19, 2018 16:37
Building an Image Classifier Ingredients
#First item is to make sure you have Docker installed. We'll be using docker to setup a tensorflow image.
To make sure docker is installed properly you can run the
'docker hello-world'
image and should get the appropriate response.
#To install and an image with tensorflow
docker run -it tensorflow/tensorflow bash
#Download and unzip the Tensorflow for poets scripts
curl -O http://104.131.75.92:8000/tensorflow-for-poets-2-master.zip
@paulallies
paulallies / gist:0052fab554b14bbfa3ef
Last active November 12, 2023 23:00
Remove node_modules from git repo
#add 'node_modules' to .gitignore file
git rm -r --cached node_modules
git commit -m 'Remove the now ignored directory node_modules'
git push origin <branch-name>