Skip to content

Instantly share code, notes, and snippets.

View vfdev-5's full-sized avatar
:octocat:
.\ |

vfdev vfdev-5

:octocat:
.\ |
View GitHub Profile
@vfdev-5
vfdev-5 / resnet_v2_graph.ipynb
Last active May 7, 2018 21:05
Graph of ResNetV2-18 & 50 with tensorboardX
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@vfdev-5
vfdev-5 / download.bash
Created April 11, 2018 10:04
VEDAI helper script
#!/bin/bash
echo "Download VEDAI datasets"
help() {
echo "No arguments supplied. Usage: sh download.sh <dataset>"
echo " <dataset>: 512, 1024, devkit"
}
if [ -z $1 ]; then
@vfdev-5
vfdev-5 / random_state_dataloader.ipynb
Last active December 3, 2017 00:18
Pytorch - tests
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@vfdev-5
vfdev-5 / cifar10-FixedSizeData.ipynb
Created August 31, 2017 17:55
Tensorpack - FixedSizeData
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@vfdev-5
vfdev-5 / cifar-convnet-cross-validation.py
Last active February 9, 2019 15:57
k-folds training
# coding: utf-8
# Example cross-validation training convnet on CIFAR10
from tensorpack import *
import tensorflow as tf
import argparse
import numpy as np
import os
@vfdev-5
vfdev-5 / facets_dive1.png
Last active August 25, 2017 03:01
PAIR-code / Facets - data visualization - favicons
facets_dive1.png
@vfdev-5
vfdev-5 / mem-consump.ipynb
Last active September 25, 2017 06:42
Tensorpack
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@vfdev-5
vfdev-5 / README.md
Last active June 1, 2017 23:15
MacOSX - Multi-threaded XGBoost - Installation

How to install XGBoost on MacOSX with multi-threaded support

As explained in the doc

brew install gcc --without-multilib
git clone --recursive https://github.com/dmlc/xgboost
cd xgboost; cp make/config.mk ./config.mk

Open and modify CC and CXX parameters in config.mk, for example: