Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
import sklearn as sk | |
import numpy as np | |
import pandas as pd | |
import scipy as scipy | |
import cPickle as pickle | |
import math | |
from collections import Counter | |
from sklearn.cross_validation import train_test_split | |
from sklearn.cross_validation import cross_val_score |
This file contains 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
import sklearn as sk | |
import numpy as np | |
import scipy as scipy | |
import cPickle as pickle | |
from sklearn.cross_validation import cross_val_score | |
from sklearn.cross_validation import ShuffleSplit | |
from scipy.stats import sem | |
# Models |
This file contains 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
package picnet.closurecompiler; | |
import java.util.Collection; | |
import java.util.Map; | |
import java.util.Set; | |
import java.util.Map.Entry; | |
import picnet.closurecompiler.pass.*; |
This file contains 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" > | |
<head> | |
<title>Drag example</title> | |
<script src="http://code.jquery.com/jquery-latest.js"></script> | |
<script src="http://jeffrey.reactiveextensions.net/rx.js" type="text/javascript"></script> | |
<script src="http://jeffrey.reactiveextensions.net/rx.jQuery.js" type="text/javascript"></script> | |
<script type="text/javascript"> | |
function drag(dragTarget) { |
This file contains 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
using System; | |
using System.Collections.Generic; | |
using System.Data; | |
using System.Data.SqlClient; | |
using System.IO; | |
using System.Linq; | |
using log4net.Appender; | |
using log4net.Core; | |
using log4net.Layout; |