Skip to content

Workshop series for DIP students under Prof. Tan Yap Peng

Notifications You must be signed in to change notification settings

RuihanGao/DIP-Workshop

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Repor for Deep Learning Workshops

  • sponsored by EEE AI Lab
  • This repo may refer to online materials/MOOCs and it is for educational purpose only.

Python Environment (local, CPU-only) Setup Guide

Download and install Anaconda

Choose Python 3.x version: https://www.anaconda.com/download/#macos

Env Setup

1. Create Environment

Open a terminal(for Mac) / Anaconda Prompt(for Windows), type command

$ conda create -n DIP python=3.6

Then

  • for Windows, type: $ conda activate DIP
  • for mac/linux, type: $ source activate DIP

2. Install packages

Type command: $ conda install pandas numpy scikit-learn matplotlib tensorflow keras jupyterlab ipykernel

3. Validate your installation

Type command: $ jupyter lab to start the interactive notebook for your experiments. By default, a service will be running at http://localhost:8888/. You can access it using any browser.

Then create a notebook, run the following code:

import keras
import matplotlib
import numpy as np
import pandas as pd
import tensorflow as tf

You should see no error.

Setup on your GPU server

You are given an account to access one of our GPU stations (Tesla V100 or GTX 1080 Ti) at EEE AI Lab.

To connect to the server

$ ssh your_username@IP_ADDRESS

Install Anaconda

Run following commands:

$ cd ~
$ wget https://repo.anaconda.com/archive/Anaconda3-5.3.0-Linux-x86_64.sh
$ bash Anaconda3-5.3.0-Linux-x86_64.sh

Then make response accordingly.

About

Workshop series for DIP students under Prof. Tan Yap Peng

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 100.0%