Skip to content

Instantly share code, notes, and snippets.

@rachtsingh
rachtsingh / layer_norm.log
Created December 30, 2016 19:38
seq2seq with layer normalization enabled
Loading data from 'data/small-train.t7'...
* vocabulary size: source = 50004; target = 50004
* additional features: source = 0; target = 0
* maximum sequence length: source = 50; target = 51
* number of training sentences: 100000
* maximum batch size: 64
Building model...
* using input feeding
Initializing parameters...
* number of parameters: 84818004
@rachtsingh
rachtsingh / batch_norm.log
Last active December 30, 2016 07:38
seq2seq with batch normalization enabled
Loading data from 'data/small-train.t7'...
* vocabulary size: source = 50004; target = 50004
* additional features: source = 0; target = 0
* maximum sequence length: source = 50; target = 51
* number of training sentences: 100000
* maximum batch size: 64
Building model...
* using input feeding
Initializing parameters...
* number of parameters: 84834004
@rachtsingh
rachtsingh / baseline.log
Created December 30, 2016 03:25
Baseline log
Loading data from 'data/small-train.t7'...
* vocabulary size: source = 50004; target = 50004
* additional features: source = 0; target = 0
* maximum sequence length: source = 50; target = 51
* number of training sentences: 100000
* maximum batch size: 64
Building model...
* using input feeding
Initializing parameters...
* number of parameters: 84814004
@rachtsingh
rachtsingh / main.c
Created December 30, 2016 01:09
explanation of passing by value
#include <stdio.h>
void swap_values_1(int p, int q) {
printf("where are the local variables in this function allocated? p: %p, q: %p\n", &p, &q);
int tmp = q;
q = p;
p = tmp;
}
void swap_values_2(int *m, int *n) {
@rachtsingh
rachtsingh / process.py
Created October 13, 2015 01:20
Preprocessing of Pos/Neg review data
import h5py
import numpy as np
import random
import re
import pickle
import pdb
from sklearn.utils import resample
# from process_data.py
def clean_str(string, TREC=False):
@rachtsingh
rachtsingh / forgrace.js
Created May 26, 2015 18:14
Basic structure
angular.module('index.controllers', [])
.controller('Ctrl', ['$scope', '$http', 'Service', function($scope, $http, Service){
}]);
angular.module('index.services')
.factory('Service', [function(){
var Service = {
stuff: 'here'
};
@rachtsingh
rachtsingh / wordinfo.py
Created March 23, 2015 00:43
Scraper for WordInfo
import scrapy
class WordUnit(scrapy.Item):
# define the fields for your item here like:
# name = scrapy.Field()
name = scrapy.Field()
link = scrapy.Field()
small_desc = scrapy.Field()
desc = scrapy.Field()
words = scrapy.Field()
class vector(list):
pass
def wrap(attr):
def wrapped(a, b):
return vector(map(lambda x, y: getattr(x, attr)(y), a, b))
return wrapped
for attr in "__add__ __sub__ __mul__ __div__".split():
setattr(vector, attr, wrap(attr))
@rachtsingh
rachtsingh / download.js
Created January 26, 2014 20:26
A script to download the 20 facts information about the Harvard Class of 2018 and encrypt the resulting JSON. Obviously some information deleted for privacy
function executeScript(){
var no = {}; // list of excluded users
re = new RegExp("[4][\:|\.|\)|\-][^1-9]");
function findmatches(response){
flag = true;
if (response.data.length < 2){ // empty response, sort of
flag = false;
}
if(flag){
response.data.forEach(function(post){
@rachtsingh
rachtsingh / queue.py
Last active January 3, 2016 02:28
kind of a queue for Moritz
class Queue():
def __init__(self):
self.elementarray = [0] * 25 # initialize to 25 0s for now (basically) empty
self.head = 0
self.tail = 0
def push(self, element):
self.elementarray[self.tail] = element # basically set the tail'th element to be 'element'
self.tail += 1 # shift the tail number