All Projects → thushv89 → Datacamp_tutorials

thushv89 / Datacamp_tutorials

Projects that are alternatives of or similar to Datacamp tutorials

Dl Course
Deep Learning with Catalyst
Stars: ✭ 162 (-1.82%)
Mutual labels:  jupyter-notebook
Newsrecommender
A news recommendation system tailored for user communities
Stars: ✭ 164 (-0.61%)
Mutual labels:  jupyter-notebook
Rwf2000 Video Database For Violence Detection
A large scale video database for violence detection, which has 2,000 video clips containing violent or non-violent behaviours.
Stars: ✭ 165 (+0%)
Mutual labels:  jupyter-notebook
Workshops
Workshops organized to introduce students to security, AI, AR/VR, hardware and software
Stars: ✭ 162 (-1.82%)
Mutual labels:  jupyter-notebook
Tdl
Course "Theories of Deep Learning"
Stars: ✭ 164 (-0.61%)
Mutual labels:  jupyter-notebook
Dsp
Metis Data Science Bootcamp - Official Prework Repository
Stars: ✭ 164 (-0.61%)
Mutual labels:  jupyter-notebook
Machine Learning
Machine learning library written in readable python code
Stars: ✭ 163 (-1.21%)
Mutual labels:  jupyter-notebook
Awesome Scientific Writing
⌨️ A curated list of awesome tools, demos and resources to go beyond LaTeX
Stars: ✭ 162 (-1.82%)
Mutual labels:  jupyter-notebook
Replika Research
Replika.ai Research Papers, Posters, Slides & Datasets
Stars: ✭ 164 (-0.61%)
Mutual labels:  jupyter-notebook
Sbi
Simulation-based inference in PyTorch
Stars: ✭ 164 (-0.61%)
Mutual labels:  jupyter-notebook
Ta
Technical Analysis Library using Pandas and Numpy
Stars: ✭ 2,649 (+1505.45%)
Mutual labels:  jupyter-notebook
Maml Jax
Implementation of Model-Agnostic Meta-Learning (MAML) in Jax
Stars: ✭ 164 (-0.61%)
Mutual labels:  jupyter-notebook
Simple Ehm
A simple tool for a simple task: remove filler sounds ("ehm") from pre-recorded speeches. AI powered.
Stars: ✭ 164 (-0.61%)
Mutual labels:  jupyter-notebook
Csharp with csharpfritz
Show notes, slides, and samples from the CSharp with CSharpFritz show
Stars: ✭ 164 (-0.61%)
Mutual labels:  jupyter-notebook
A Journey Into Convolutional Neural Network Visualization
A journey into Convolutional Neural Network visualization
Stars: ✭ 165 (+0%)
Mutual labels:  jupyter-notebook
Tensorflow2 Crash Course
A quick crash course in understanding the essentials of TensorFlow 2 and the integrated Keras API
Stars: ✭ 162 (-1.82%)
Mutual labels:  jupyter-notebook
Appearance Flow
A deep learning framework for synthesizing novel views of objects and scenes
Stars: ✭ 164 (-0.61%)
Mutual labels:  jupyter-notebook
Cvpr18 Inaturalist Transfer
Large Scale Fine-Grained Categorization and Domain-Specific Transfer Learning. CVPR 2018
Stars: ✭ 164 (-0.61%)
Mutual labels:  jupyter-notebook
Torch Segmentation
Semantic Segmentation
Stars: ✭ 165 (+0%)
Mutual labels:  jupyter-notebook
Fixy
Amacımız Türkçe NLP literatüründeki birçok farklı sorunu bir arada çözebilen, eşsiz yaklaşımlar öne süren ve literatürdeki çalışmaların eksiklerini gideren open source bir yazım destekleyicisi/denetleyicisi oluşturmak. Kullanıcıların yazdıkları metinlerdeki yazım yanlışlarını derin öğrenme yaklaşımıyla çözüp aynı zamanda metinlerde anlamsal analizi de gerçekleştirerek bu bağlamda ortaya çıkan yanlışları da fark edip düzeltebilmek.
Stars: ✭ 165 (+0%)
Mutual labels:  jupyter-notebook

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
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].