Skip to content

Instantly share code, notes, and snippets.

View DSLituiev's full-sized avatar

Dmytro Lituiev DSLituiev

  • UCSF
  • San Francisco, CA, USA
View GitHub Profile
python3 setup.py build_ext
setup.py build_ext
/netapp/home/dlituiev/.usr/py3/lib/
Partial import of sklearn during the build process.
Generating cython files
Cythonizing sources
sklearn
Processing sklearn/_isotonic.pyx
Traceback (most recent call last):
File "/usr/bin/cython", line 7, in <module>
install.packages("rzmq")
Installing package into ‘/home/dima/R/x86_64-pc-linux-gnu-library/3.2’
(as ‘lib’ is unspecified)
--- Please select a CRAN mirror for use in this session ---
trying URL 'https://cran.cnr.berkeley.edu/src/contrib/rzmq_0.7.7.tar.gz'
Content type 'application/x-gzip' length 16246 bytes (15 KB)
==================================================
downloaded 15 KB
* installing *source* package ‘rzmq’ ...
@DSLituiev
DSLituiev / chainer_ca.py
Created November 19, 2015 02:58 — forked from ktnyt/chainer_ca.py
Refactored code for a Convolutional Autoencoder implemented with Chainer.
import argparse
import numpy as np
from chainer import Variable, FunctionSet, optimizers, cuda
import chainer.functions as F
import cv2
import random
import cPickle as pickle
import sys
class ConvolutionalAutoencoder(FunctionSet):