This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Testing simple 3 Hidden Layers Neural Network implementation in python | |
# Multiple examples are feed in single instance. | |
import numpy as np | |
from skimage.io import imread, imshow | |
def get_img(name): | |
im = imread(name) | |
im_clr = np.zeros((im.shape[0],im.shape[1])) | |
for i in range(im.shape[0]): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; TestOS - Simple OS/Bootloader Script | |
; To demostrate jumping from 16-Bit Real Mode to 32 Bit Protected mode | |
; Tested in QEMU | |
; Simply by setting up only GDT. | |
; A20 Gate is not part of of this sccript. | |
; No keyboard inputs required. I think, That would have made this interactive and better. | |
; | |
; Single grouped Command to Test the script in Linux (Qemu is Required) | |
; nasm t1.asm -o t1.bin && dd conv=notrunc if=t1.bin of=t1.flp && qemu-system-i386 -fda t1.flp | |
; No license and Warranty - Use at your own risk after studying the code below. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
/** | |
* This clas deals with alphabets of | |
* english language. | |
* | |
* Please check another code I published | |
* on my profile for improved version. | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <vector> | |
using namespace std; | |
/** | |
* This class deals with alphabets of | |
* english language. | |
* | |
* @author Shrikrishna Meena | |
* @created 15 November 2016 |