Skip to content

Instantly share code, notes, and snippets.

View bridgesign's full-sized avatar

Rohan Patil bridgesign

View GitHub Profile
@bridgesign
bridgesign / wcat.c
Last active February 29, 2020 04:43
This is wcat
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
#include <string.h>
#include <sys/stat.h>
#include <fcntl.h>
int main(int argc, char const *argv[])
@bridgesign
bridgesign / nn_s.py
Last active May 23, 2018 17:58
Neural Network - Under Construction
import json
import numpy as np
from scipy.misc import imread, imresize
import os
import random
from math import exp
#Takes input of the path for image data, the final width and
#height to which the image needs to be resized
#Gives the output as numpy array. Images are converted to Grayscale.