• Stars
    star
    185
  • Rank 208,271 (Top 5 %)
  • Language
    Jupyter Notebook
  • Created over 6 years ago
  • Updated almost 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Introduction

This repository contains various tutorials written for DataCamp.

How to run code?

I like to keep the Python setup in my OS very simple and create virtual environments with required custom libraries depending on the project I want to run. I would very much like to use Docker for this purpose, as that is the de-facto standard for process isolation. However since I am using Windows there is no way for me to expose my GPU to Docker. Thus, I opt to conda and Python virtual environment.

Using conda environment

  1. Download and install Anaconda
  2. Make sure conda is in the system PATH by trying conda --version on a terminal
  3. Create a conda virtual environment using conda create -n datacamp.tutorials python=3.5
  4. cd into the project directory
  5. Install tensorflow as follows
    • If you do not have a GPU use: conda install -n datacamp.tutorial --yes --file requirements.txt
    • If you do have a GPU use: conda install -n datacamp.tutorials --yes --file requirements_gpu.txt
  6. Activate the newly created environment with activate datacamp.tutorials

Further reading on how to setup conda environments: Here

Using Python virtualenv

I prefer conda because numpy, pandas and tensorflow CPU operations are much faster than when used with pip according to this article. But if you prefer to use Python virtualenv, use the following steps.

  1. Download and install Python 3.5
  2. Now install virtualenv with pip3 install virtualenv
  3. cd into the project directory
  4. Create a virtual environment with virtualenv -p <path to python 3.5> datacamp.tutorials
  5. Activate the virtual environment as follows
    • If you are on Windows: <project_dir>\datacamp.tutorials\Scripts\activate
    • If you are on Ubuntu: source <project_dir>\datacamp.tutorials\bin\activate
  6. Install tensorflow as follows
    • If you do not have a GPU use: pip3 install -r requirements.txt
    • If you do have a GPU use: pip3 install -r requirements_gpu.txt

More Repositories

1

attention_keras

Keras Layer implementation of Attention for Sequential models
Python
442
star
2

exercises_thushv_dot_com

Here lies all the exercises I implement and share in my website
Jupyter Notebook
208
star
3

manning_tf2_in_action

The official code repository for "TensorFlow in Action" by Manning.
Jupyter Notebook
83
star
4

packt_nlp_tensorflow_2

This will contain the code for the 2nd edition of NLP with TensorFlow (Edition 2)
Jupyter Notebook
41
star
5

xgboost-aws-container

Python
35
star
6

udacity_deeplearning_complete

Assignments of Udacity Deeplearning Course
Jupyter Notebook
26
star
7

PreprocessingBenchmarkDatasets

Python
12
star
8

tutorials_deeplearninghero

Jupyter Notebook
8
star
9

word2vec

Word2Vec exercises from latest papers
Jupyter Notebook
7
star
10

GO-Reminder

This is a geo location based task reminder application for android
Java
7
star
11

odsc_art_of_bert

Jupyter Notebook
3
star
12

Windows-Phone-Twitter

C#
3
star
13

gcp-tf-review-classification

Jupyter Notebook
3
star
14

Neural-Networks-Java

This is the neural network algorithm implemented in java
3
star
15

deep_occupancy

Python
2
star
16

GSOM

GSOM (Growing Self-Organizing Maps) is a neural network based algorithm inspired by Prof. Kohonen's Self-Organizing maps. The specialty of GSOM is "unconstrained learning ability". In other words GSOM does not require the analyst to define the number of nodes in the neural network as required by self-organizning maps.
Java
2
star
17

tf-serving-gke

Serving a stable diffusion model on GKE
Jupyter Notebook
1
star
18

iPlanner

iPlanner is an intelligent meeting scheduler developed in java. It will predict best matching time slots for a meeting depending on the situation
Java
1
star
19

Windows-Phone-Outlook-PoC

1
star
20

DeconvVisualization

Python
1
star
21

DeepReinforcementLearning

Python
1
star
22

IKASL-Library

IKASL Library is a code repository designed as a "Library project". Therefore can be used in any other project
Java
1
star
23

try_git

1
star
24

tekbac_nlp_course

Jupyter Notebook
1
star
25

tfra-tutorial

Tutorial on how to use dynamic embeddings from the tensorflow-recommenders-addons library
Jupyter Notebook
1
star
26

Chat-Reveal

This provides a way to know when your secret love appears online on facebook
Java
1
star
27

Stu

Stu is a student management application written in java
1
star