Skip to content

Instantly share code, notes, and snippets.

View irenexychen's full-sized avatar

Irene XiangYi Chen irenexychen

View GitHub Profile

Keybase proof

I hereby claim:

  • I am irenexychen on github.
  • I am irenexychen (https://keybase.io/irenexychen) on keybase.
  • I have a public key ASDZHrpE1FqIfXCsTNFCujbS8m2kphluP8p5nxgGlWon4wo

To claim this, I am signing this object:

@irenexychen
irenexychen / docker-tensorflow-commands.sh
Created January 6, 2020 14:52
Docker commands related to TensorFlow
# launching a sandbox
docker run -it -net=host -v $PWD:/workspace tensorflow/tensorflow:tag /bin/bash
@irenexychen
irenexychen / docker-without-sudo.sh
Created January 6, 2020 14:48
Installation Commands
sudo groupadd docker
sudo usermod -a -G docker $USER
sudo service docker restart
su ${USER}
docker run hello-world