Skip to content

Instantly share code, notes, and snippets.

View shv07's full-sized avatar

Shivji Bhagat shv07

View GitHub Profile
@shv07
shv07 / Radix_Sort.c
Created July 8, 2019 13:37
C code to perform Radix Sort from scratch.
# include <stdio.h>
# include <stdlib.h>
#include <math.h>
int A[100];
void print(int n)
{
int i;
for (i=0;i<n;i++)
printf("\n%d",A[i]);
@shv07
shv07 / Assignment7_Q1a.ipynb
Created April 9, 2019 18:01
SVM implementation from scratch -- Shivji Bhagat -- 16110149
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@shv07
shv07 / Assignment6_Q1.ipynb
Last active June 12, 2019 13:55
Naive Bayes Implementation from scratch and Active Learning
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@shv07
shv07 / 16110149_Shivji_OCC.ipynb
Last active June 14, 2019 07:15
Online Content Creation for Databases, topic - Demonstrating different Joins using Embedded SQL
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@shv07
shv07 / ContentCreation_16110149_Shivji.ipynb
Last active June 14, 2019 11:23
Generative Text Summarization using the word frequencies : A basic approach to text summarization.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.