Skip to content

Instantly share code, notes, and snippets.

View kashefy's full-sized avatar

Youssef Kashef kashefy

  • Berlin, Germany
View GitHub Profile
template <typename Dtype>
void printMat(const Dtype* data, int rows, int cols) {
int j = 0;
std::cout<<"np.array([";
for (int r=0; r<rows; r++) {
std::cout<<"[";
for (int c=0; c<cols; c++) {
std::cout<<data[j++];
if (c<cols-1) std::cout<<",";
}
@kashefy
kashefy / mnist_ae_tied_weights_trainval.prototxt
Last active January 29, 2016 18:59
network definition for an Auto-encoder with tied weights. The weight are tied by sharing parameter names in 'permissive mode' and setting the decoder's ip params to use tranposed weigts.
name: "MNISTAutoencoderTiedWeights"
layer {
name: "mnist"
type: "Data"
top: "data"
top: "label"
include {
phase: TRAIN
}
transform_param {
@kashefy
kashefy / fileSystemUtils.py
Created September 29, 2015 14:07
file system utilities
import os
def gen_paths(dir_src, func_filter=None):
if func_filter is None:
def func_filter(fileName):
return True
dst = []
@kashefy
kashefy / val_59.txt
Created August 7, 2015 10:23
Entities from the PASCAL-Context db assigned to the validation set. Obtained from http://www.cs.stanford.edu/~roozbeh/pascal-context/59_context_labels.tar.gz
2008_000002
2008_000003
2008_000007
2008_000009
2008_000016
2008_000021
2008_000026
2008_000027
2008_000032
2008_000034
@kashefy
kashefy / rename_img_files
Created June 16, 2015 13:03
traversing subdirectories and renaming image files with strange windows-specific character
'''
Created on Jun 16, 2015
@author: kashefy
'''
import argparse
import os
def list_paths(root_path):