Skip to content

Instantly share code, notes, and snippets.

View vincentzhang's full-sized avatar

vincentzhang

View GitHub Profile
@vincentzhang
vincentzhang / AdaDelta_solver.prototxt
Last active August 24, 2017 20:35
Training files for fusionSeg
net: "appearance/appearance_stream_train.prototxt"
base_lr: 1.0
lr_polic

How to create a custom Caffe layer in Python?

This tutorial will guide through the steps to create a simple custom layer for Caffe using python. By the end of it, there are some examples of custom layers.

- Why would I want to do that?

Usually you would create a custom layer to implement a funcionality that isn't available in Caffe, tuning it for your requirements.

- What will I need?

Probably just Python and Caffe instaled.

- Is there any downside?

@vincentzhang
vincentzhang / The Technical Interview Cheat Sheet.md
Last active June 27, 2017 06:35 — forked from tsiege/The Technical Interview Cheat Sheet.md
This is my technical interview cheat sheet.

My technical interview cheat sheet, modified from this reference: https://gist.github.com/TSiege/cbb0507082bb18ff7e4b

Studying for a Tech Interview Sucks, so here's a Cheat Sheet to Help

This list is meant to be a both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth.

Data Structure Basics

Note: The following data structures are called "Dynamic Sets" which basically means that you can change the value of a member.

Array