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
# a special thanks to the ComputeCanada support team for making available these modules on the cluster! | |
# using this script is pretty easy, just `wget` this into a server and then `bash RoboschoolCluster.sh` | |
module load python/3.5.2 | |
module load qt | |
module load gcc/6.4.0 | |
module load boost/1.65.1 | |
# this command should not fail | |
pkg-config --cflags Qt5Widgets Qt5OpenGL assimp python-3.5 tinyxml |
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
INSTALLDIR="$(pwd)/roboschool_installation" | |
echo "installing roboschool at $INSTALLDIR" | |
mkdir $INSTALLDIR | |
cd $INSTALLDIR | |
echo "Now cloning roboschool from github." | |
git clone https://github.com/openai/roboschool | |
ROBOSCHOOL_PATH="${INSTALLDIR}/roboschool" | |
echo "ROBOSCHOOL_PATH was set to $ROBOSCHOOL_PATH" | |
cd "$ROBOSCHOOL_PATH" | |
git clone https://github.com/olegklimov/bullet3 -b roboschool_self_collision |
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
#!/bin/bash | |
pdflatex ${1}.tex | |
bibtex ${1} | |
pdflatex ${1}.tex | |
pdflatex ${1}.tex |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <math.h> | |
#include <iostream> | |
#include <vector> | |
#include <fstream> | |
#include <sstream> | |
#include <string> | |
using namespace std; |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <math.h> | |
#include <iostream> | |
#include <vector> | |
#include <fstream> | |
#include <sstream> | |
#include <string> | |
using namespace std; |
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
target | friend | strength | class | state | |
---|---|---|---|---|---|
0 | 19 | 1 | SCI1 | 0 | |
1 | 85 | 1 | HUM1 | 0 | |
1 | 62 | 1 | HUM1 | 0 | |
1 | 38 | 1 | HUM1 | 0 | |
1 | 72 | 1 | HUM1 | 0 | |
2 | 61 | 1 | SCI1 | 0 | |
2 | 79 | 1 | SCI1 | 0 | |
2 | 48 | 1 | SCI1 | 0 | |
4 | 39 | 1 | HUM1 | 0 |
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
""" | |
Minimal character-level Vanilla RNN model. Written by Andrej Karpathy (@karpathy) | |
BSD License | |
""" | |
import numpy as np | |
# data I/O | |
data = open('input.txt', 'r').read() # should be simple plain text file | |
chars = list(set(data)) | |
data_size, vocab_size = len(data), len(chars) |
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 numpy as np | |
import time | |
# the population: | |
global population | |
population = np.random.normal(-10,10, size=(10**6, 3)) | |
def sample(args): | |
centre, radii = args | |
# print centre, radii |
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
var q = require('q'); | |
var request = require('request'); | |
var context = { | |
query: 'hello how are you?' | |
} // global context to be mutated by all "plugins" | |
function hello_plugin(context){ | |
var query = context.query | |
var contains_hello = false; |
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
# time_values is a signal of shape: (time, n_channels) | |
# window data tensor is of shape: (time, window_size, n_channels) | |
# where window_size just holds all the data for the T-window_size data. | |
window_data_tensor = np.zeros((time_values.shape[0], window_size, time_values.shape[1])) | |
for t in range(1, time_values.shape[0]): | |
if t <= window_size: | |
window_data_tensor[t, :, :] = np.pad(time_values[:t, :], ((0, window_size-t), (0,0)), mode='constant') | |
elif t > window_size and t < time_values.shape[0]-window_size+1: |
NewerOlder