Skip to content

Instantly share code, notes, and snippets.

View sparkingdark's full-sized avatar
🏠
Working from home

Debojyoti Chakraborty sparkingdark

🏠
Working from home
View GitHub Profile
so nlp fundamental awesome
1.advanced tokenization using nltk and regex
2.nltk tokenization
3.non ascii tokenization
4.charting with nltk
5.bag of words
6.buiding a counter with bag of words
7.preprocessing of texts
8.introductgion to gensim
9.tf-idf
Serial Keys:
YV54A-2ZW5P-M887Y-UWXNE-QPUXD
VY3R2-0NW0L-H845Q-TDMXT-XQAT0
VC7JR-A0Z97-08EGZ-M4YNV-XVHD0
FC1TU-4RGEQ-084EP-2XQQX-ZGHWA
CU1WA-8HGEN-M815Z-HQP5E-QKADF
AY7D0-FTG44-H846Y-2XPGV-P32T8
from keras.layers import Dense
from keras.models import Sequential
model=Sequential()
model.add(Dense(100))
model.add(Dense(50))
model.add(Dense(1))
@sparkingdark
sparkingdark / activation_functions.ipynb
Created January 15, 2020 11:24
activation_functions.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
import tensorflow as tf
training_epochs = 500
n_neurons_in_h1 = 60
n_neurons_in_h2 = 60
learning_rate = 0.01
X = tf.placeholder(tf.float32, [None, n_features], name='features')
Y = tf.placeholder(tf.float32, [None, n_classes], name='labels')
@sparkingdark
sparkingdark / full-stack-app.md
Created February 27, 2020 14:22 — forked from bertoort/full-stack-app.md
Build a RESTful, full stack CRUD application.

Full Stack Application

By the end of this exercise you will build a full stack application with a client, server, and database.

** NOTE ** Do not copy and paste. This project is about solidifying concepts and finding gaps in your knowledge. It is OK to look back at previous work, however, you should understand what every line does and be able to write from scratch.

Tasks

0. Plan

@sparkingdark
sparkingdark / day1task10daysofmlchallenge.ipynb
Created March 26, 2020 09:32
Day1task10daysofmlchallenge.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sparkingdark
sparkingdark / copy-of-day-2-starter-10daysofmlchallenge.ipynb
Last active March 26, 2020 11:12
Copy of Day 2 Starter #10DaysofMLChallenge
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sparkingdark
sparkingdark / copy-of-indian-dance-type-image-classification-using-vgg1.ipynb
Created June 24, 2020 14:54
Copy of Indian dance type image classification using VGG1.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

F

#include <bits/stdc++.h>

using namespace std;

int main()
{
    long sum = 0;