Skip to content

Instantly share code, notes, and snippets.

View SoyabulIslamLincoln's full-sized avatar
🎯
Focusing

Soyabul Islam Lincoln SoyabulIslamLincoln

🎯
Focusing
View GitHub Profile
'''This script goes along the blog post
"Building powerful image classification models using very little data"
from blog.keras.io.
It uses data that can be downloaded at:
https://www.kaggle.com/c/dogs-vs-cats/data
In our setup, we:
- created a data/ folder
- created train/ and validation/ subfolders inside data/
- created cats/ and dogs/ subfolders inside train/ and validation/
- put the cat pictures index 0-999 in data/train/cats
@SoyabulIslamLincoln
SoyabulIslamLincoln / project 1.ipynb
Created June 15, 2020 03:38
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@SoyabulIslamLincoln
SoyabulIslamLincoln / min-char-rnn.py
Created June 1, 2020 04:40 — forked from karpathy/min-char-rnn.py
Minimal character-level language model with a Vanilla Recurrent Neural Network, in Python/numpy
"""
Minimal character-level Vanilla RNN model. Written by Andrej Karpathy (@karpathy)
BSD License
"""
import numpy as np
# data I/O
data = open('input.txt', 'r').read() # should be simple plain text file
chars = list(set(data))
data_size, vocab_size = len(data), len(chars)
@SoyabulIslamLincoln
SoyabulIslamLincoln / class.ipynb
Created May 9, 2020 05:37
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@SoyabulIslamLincoln
SoyabulIslamLincoln / class.ipynb
Created May 8, 2020 17:00
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@SoyabulIslamLincoln
SoyabulIslamLincoln / apache-spark-lab2.ipynb
Created May 1, 2020 17:36
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@SoyabulIslamLincoln
SoyabulIslamLincoln / CourseAdvisor.js
Created May 1, 2020 16:48
Created on Skills Network Labs
const DiscoveryV1 = require("ibm-watson/discovery/v1");
async function queryDiscovery(
environmentId,
collectionId,
discoveryUsername,
discoveryPassword,
query,
url
) {
@SoyabulIslamLincoln
SoyabulIslamLincoln / text-to-speech.ipynb
Created May 1, 2020 16:47
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@SoyabulIslamLincoln
SoyabulIslamLincoln / apache-spark-lab1.ipynb
Created May 1, 2020 16:47
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.