Skip to content

Instantly share code, notes, and snippets.

View Z30G0D's full-sized avatar

Tomer Nahshon Z30G0D

View GitHub Profile
@Z30G0D
Z30G0D / Japanese_VAE - Preprocessing.ipynb
Created November 9, 2018 15:27
Japanese letters VAE- preprocessing stage
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Z30G0D
Z30G0D / VAE_model.ipynb
Created November 9, 2018 13:51
Japanese VAE model
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
{
"cells": [
{
"cell_type": "code",
"execution_count": 25,
"metadata": {},
"outputs": [],
"source": [
"import numpy as np\n",
"from scipy.io import loadmat\n",
@Z30G0D
Z30G0D / dog_breed.ipynb
Created July 31, 2018 13:18
Python notebook for dog breed competition in kaggle
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Z30G0D
Z30G0D / Spectral_clustering.ipynb
Created July 15, 2018 09:27
A spectral clustering from scratch
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Finding highest amount of diamonds\n",
"## Job interview exercise for Medecide"
]
},
@Z30G0D
Z30G0D / Random_forest_regressor
Created May 16, 2018 15:38
A simple random forest regressor for automobile dataset
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Automobile prices regression\n",
"## hello all\n",
"This is a simple random forest classifier for regression of automobile prices, the dataset is located <a href=\"https://archive.ics.uci.edu/ml/datasets/automobile\">here</a>"
]
@Z30G0D
Z30G0D / imubit_challenge_noisy
Created May 5, 2018 16:25
noisy_labels solution for imubit
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Imubit\n",
"This is my solution for the challenge. I will explain my steps through this notebook. "
]
},
@Z30G0D
Z30G0D / Combined loss function
Last active May 5, 2018 16:25
Combined loss function for imubit
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Imubit\n",
"This is my solution for the challenge. I will explain my steps through this notebook. "
]
},
@Z30G0D
Z30G0D / hyperparameters-regularization
Created April 7, 2018 12:03
deeplearning.ai exercise week 2 regularization
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Regularization\n",
"\n",
"Welcome to the second assignment of this week. Deep Learning models have so much flexibility and capacity that **overfitting can be a serious problem**, if the training dataset is not big enough. Sure it does well on the training set, but the learned network **doesn't generalize to new examples** that it has never seen!\n",
"\n",