Skip to content

Instantly share code, notes, and snippets.

View vedraiyani's full-sized avatar

Chintan Raiyani vedraiyani

  • SAP Labs
  • Bangalore, India
View GitHub Profile
http://www.oreilly.com/data/free/files/2014-data-science-salary-survey.pdf
http://www.oreilly.com/data/free/files/2015-data-science-salary-survey.pdf
http://www.oreilly.com/data/free/files/Data_Analytics_in_Sports.pdf
http://www.oreilly.com/data/free/files/advancing-procurement-analytics.pdf
http://www.oreilly.com/data/free/files/ai-and-medicine.pdf
http://www.oreilly.com/data/free/files/analyzing-data-in-the-internet-of-things.pdf
http://www.oreilly.com/data/free/files/analyzing-the-analyzers.pdf
http://www.oreilly.com/data/free/files/architecting-data-lakes.pdf
http://www.oreilly.com/data/free/files/being-a-data-skeptic.pdf
http://www.oreilly.com/data/free/files/big-data-analytics-emerging-architecture.pdf
@vedraiyani
vedraiyani / 2to3_nb.py
Created September 25, 2018 08:43 — forked from takluyver/2to3_nb.py
Run 2to3 on IPython notebooks
#!/usr/bin/env python3
"""
To run: python3 nb2to3.py notebook-or-directory
"""
# Authors: Thomas Kluyver, Fernando Perez
# See: https://gist.github.com/takluyver/c8839593c615bb2f6e80
import argparse
import pathlib
from nbformat import read, write
// actions/action_select_contact.js
function selectContact(contact) {
return {
type: 'CONTACT_SELECTED',
payload: contact
}
}
export default selectContact;
@vedraiyani
vedraiyani / simple-genetic-algorithm.ipynb
Created September 2, 2019 11:15
simple genetic algorithm.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@vedraiyani
vedraiyani / folium_example.ipynb
Created September 6, 2019 08:50
Folium_example.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@vedraiyani
vedraiyani / data-scientists-the-5-graph-algorithms.ipynb
Created September 7, 2019 08:16
Data Scientists, The 5 Graph Algorithms.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@vedraiyani
vedraiyani / GAN.py
Created September 23, 2019 10:25
A Simple GAN implementation with Keras and Tensorflow
from __future__ import print_function, division
from keras.datasets import mnist
from keras.layers import Input, Dense, Reshape, Flatten, Dropout
from keras.layers import BatchNormalization, Activation
from keras.layers.advanced_activations import LeakyReLU
from keras.models import Sequential, Model
from keras.optimizers import Adam
@vedraiyani
vedraiyani / how-to-develop-a-1d-generative-adversarial-network-from-scratch-in-keras.ipynb
Created September 24, 2019 09:30
How to Develop a 1D Generative Adversarial Network From Scratch in Keras.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@vedraiyani
vedraiyani / generative-adversarial-network-gan.ipynb
Created September 25, 2019 06:22
Generative Adversarial Network (GAN).ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@vedraiyani
vedraiyani / writing-your-first-generative-adversarial-network-with-keras.ipynb
Created September 25, 2019 06:44
Writing your first Generative Adversarial Network with Keras.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.