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
In [40]: A = randLILMatrix(10,10); A.set_type(FF(2)) | |
In [45]: A | |
Out[45]: | |
⎡1 mod 2 0 mod 2 0 mod 2 0 mod 2 0 mod 2 1 mod 2 0 mod 2 1 mod 2 0 mod 2 1 mod 2⎤ | |
⎢ ⎥ | |
⎢0 mod 2 1 mod 2 1 mod 2 1 mod 2 0 mod 2 0 mod 2 1 mod 2 0 mod 2 1 mod 2 1 mod 2⎥ | |
⎢ ⎥ | |
⎢1 mod 2 0 mod 2 0 mod 2 0 mod 2 0 mod 2 1 mod 2 1 mod 2 1 mod 2 1 mod 2 0 mod 2⎥ | |
⎢ ⎥ |
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
!obj:pylearn2.train.Train { | |
dataset: &train !obj:pylearn2.datasets.mnist.MNIST { | |
which_set: 'train', | |
start: 0, | |
stop: 50000 | |
}, | |
model: !obj:galatea.adversarial.AdversaryPair { | |
generator: !obj:galatea.adversarial.Generator { | |
mlp: !obj:pylearn2.models.mlp.MLP { | |
layers: [ |
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
Traceback (most recent call last): | |
File "/u/ozairs/pylearn2/pylearn2/scripts/train.py", line 163, in <module> | |
train_obj = serial.load_train_file(args.config) | |
File "/u/ozairs/pylearn2/pylearn2/utils/serial.py", line 549, in load_train_file | |
return yaml_parse.load_path(config_file_path, environ=environ) | |
File "/u/ozairs/pylearn2/pylearn2/config/yaml_parse.py", line 102, in load_path | |
return load(content, environ=environ, **kwargs) | |
File "/u/ozairs/pylearn2/pylearn2/config/yaml_parse.py", line 64, in load | |
return instantiate_all(proxy_graph) | |
File "/u/ozairs/pylearn2/pylearn2/config/yaml_parse.py", line 156, in instantiate_all |
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 sys | |
import time | |
import numpy | |
import theano | |
import theano.tensor as T | |
from pylearn2.utils import serial | |
from pylearn2.config import yaml_parse | |
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 "llvm/Pass.h" | |
#include "llvm/IR/Module.h" | |
#include "llvm/IR/Function.h" | |
#include "llvm/IR/BasicBlock.h" | |
#include "llvm/IR/Instructions.h" | |
#include "llvm/Analysis/LoopInfo.h" | |
#include "llvm/IR/Type.h" | |
#include "llvm/IR/User.h" | |
#include "llvm/Analysis/LoopPass.h" | |
#include "llvm/Support/raw_ostream.h" |
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 theano | |
import numpy | |
from theano import tensor as T | |
from PIL import Image | |
import os | |
import sys | |
import gzip | |
import cPickle |
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
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" Maintainer: | |
" Amir Salihefendic | |
" http://amix.dk - [email protected] | |
" | |
" Version: | |
" 5.0 - 29/05/12 15:43:36 | |
" | |
" Blog_post: | |
" http://amix.dk/blog/post/19691#The-ultimate-Vim-configuration-on-Github |
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 random | |
import numpy as np | |
import gym | |
from scipy.misc import imresize | |
import tensorflow as tf | |
import tensorflow.contrib.slim as slim | |
class ReplayMemory: | |
def __init__(self, size=10**6, dims=(42, 42), | |
order=4, seqlen=1, mbsz=64): |
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
// Copyright (c) 2017, NVIDIA CORPORATION. All rights reserved. | |
// | |
// Redistribution and use in source and binary forms, with or without | |
// modification, are permitted provided that the following conditions | |
// are met: | |
// * Redistributions of source code must retain the above copyright | |
// notice, this list of conditions and the following disclaimer. | |
// * Redistributions in binary form must reproduce the above copyright | |
// notice, this list of conditions and the following disclaimer in the | |
// documentation and/or other materials provided with the distribution. |
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
sherjilozair-2:~ sherjil$ nimble install c2nim --verbose | |
Reading official package list | |
Downloading https://github.com/nim-lang/c2nim using git | |
Setting Nim stdlib prefix to | |
Setting Nim stdlib path to /Users/sherjil/.choosenim/toolchains/nim-#devel/lib | |
Warning: Package 'c2nim' has an incorrect structure. The top level of the package source directory should contain at most one module, named 'c2nim.nim', but a file named 'rules.nim' was found. This will be an error in the future. | |
Hint: If this is the primary source file in the package, rename it to 'c2nim.nim'. If it's a source file required by the main module, or if it is one of several modules exposed by 'c2nim', then move it into a 'c2nimpkg/' subdirectory. If it's a test file or otherwise not required to build the the package 'c2nim.nim', prevent its installation by adding `skipFiles = @["rules.nim"]` to the .nimble file. See https://github.com/nim-lang/nimble#libraries for more info. | |
Setting Nim stdlib prefix to | |
Setting Nim stdli |
OlderNewer