Skip to content

Instantly share code, notes, and snippets.

View shravankumar147's full-sized avatar
🎯
Focusing

Shravankumar shravankumar147

🎯
Focusing
View GitHub Profile
@shravankumar147
shravankumar147 / bert-model-download-to-local.ipynb
Created February 28, 2022 15:56
Bert Model Download to Local.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@shravankumar147
shravankumar147 / bert-model-download-to-local.ipynb
Created December 27, 2021 17:58
Bert Model Download to Local.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@shravankumar147
shravankumar147 / karate_club_gcn_example.ipynb
Created October 22, 2021 11:22
karate_club_GCN_example.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@shravankumar147
shravankumar147 / execution-progress-animation-using-threads.ipynb
Created September 27, 2021 12:33
Execution Progress Animation using Threads
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@shravankumar147
shravankumar147 / blockchain-data-extraction_addr-txngraph.ipynb
Created September 6, 2021 13:28
Blockchain Data Extraction_Addr->TxnGraph.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@shravankumar147
shravankumar147 / name-entity-recognition_transformers.ipynb
Created September 3, 2021 10:36
Name Entity Recognition_Transformers.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@shravankumar147
shravankumar147 / compute-mean-of-given-numbers.ipynb
Created August 17, 2021 14:32
Compute Mean of Given Numbers.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
filename = 'twins';
OUTPUT = 'C:\\Users\\huy\\Desktop\\matlab\\';
TRAIN = 'C:\\Users\\huy\\Desktop\\matlab\\faces\\';
INPUT = 'C:\\Users\\huy\\Desktop\\matlab\\';
% load the training data set (60 faces)
load('data60_256.mat');
% read in original image, face and eyes coordinates/sizes data (from OpenCV's
'''Trains a simple convnet on the MNIST dataset.
Gets to 98.97% test accuracy after 12 epochs
'''
from __future__ import print_function
import keras
from keras.datasets import mnist
from keras.models import Sequential
from keras.layers import Dense, Dropout, Flatten
@shravankumar147
shravankumar147 / build_face_dataset.py
Created June 28, 2018 03:32 — forked from machinelearning147/build_face_dataset.py
build_face_dataset using webcam
# USAGE
# python build_face_dataset.py --cascade haarcascade_frontalface_default.xml --output dataset/adrian
# import the necessary packages
from imutils.video import VideoStream
import argparse
import imutils
import time
import cv2
import os