Skip to content

Instantly share code, notes, and snippets.

View duguyue100's full-sized avatar

Yuhuang Hu duguyue100

View GitHub Profile

PoseTrack Dataset and Benchmark

Latest News

  • 2017-07-10: Taster (v0.5) of the dataset is released.

About

PoseTrack is a large-scale benchmark for human pose estimation and tracking in image sequences. It provides a publicly available training and validation set as well as an evaluation server for benchmarking on a held-out test set (www.posetrack.net).

class FuseExt2 < Formula
desc "FUSE module to mount ext2/3/4 file systems with read write support"
homepage "https://github.com/alperakcan/fuse-ext2"
url "https://codeload.github.com/ipatch/fuse-ext2/zip/master"
sha256 "ad2260df4ccfb8ba9f761c66ea7c3b24bf690eab46e6d562d2d2e5a5f2f76dff"
head "https://github.com/alperakcan/fuse-ext2.git"
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build

Scientific Python and Linux Tips

1. Setup *nix

*nix may be the most general form you can find to describe all Linux and Unix-like distribution. And Ubuntu is one of *nix-like distribution.

(Above message is not important)

Setup Ubuntu, download the latest desktop from here

@duguyue100
duguyue100 / activation.py
Last active June 13, 2017 10:58
ResNet flavoured SELU SNN implementation
"""Customized Activation.
Author: Yuhuang Hu
Email : duguyue100@gmail.com
"""
from keras.initializers import VarianceScaling
import keras.backend as K
@duguyue100
duguyue100 / video-iterator.py
Last active April 19, 2017 12:08
A video iterator in Keras
"""A video iterator in Keras.
Use it like any other iterators.
Author: Yuhuang Hu
Email : duguyue100@gmail.com
"""
from __future__ import print_function
import os
import shutil