Skip to content

Instantly share code, notes, and snippets.

View zarzen's full-sized avatar

Zhen Zhang zarzen

View GitHub Profile
@zarzen
zarzen / SementicSegmentation.org
Last active August 29, 2015 14:25
Discussion

resource

cpp implementation

CN24 is a complete semantic segmentation framework using fully convolutional networks. It supports a wide variety of platforms (Linux, Mac OS X and Windows) and libraries (OpenCL, Intel MKL, AMD ACML…) while providing dependency-free reference implementations. The software is developed in the Computer Vision Group at the University of Jena.

这个是用来取super pixel的

@zarzen
zarzen / convert2camel.org
Created November 4, 2015 15:14
convert dropwizard application to camel restlet application

最近的工作是把dropwizard的一个提供restful API的程序转化成能够在jboss-fuse中运行的,利用camel restful DSL提供restful API的 程序。一开始没什么思路,不过后来想想就把dropwizard start application的那部分去掉,而jersey提供的那些restful API注解去掉, 用camel搞个route指向对应的logic bean就可以了。 不过其中把新的,去掉了dropwizard包装的程序运行在fuse中需要把,程序依赖的包安装到fuse容器中,并且需要能够被引用的到。也就是 安装进去的bundle需要export对应的包,给别的java程序使用。安装jdbi的bundle的时候出现了问题。这个jar并不是一个osgi-bundle的, 没有定义需要export的packages。我手动改了MF文件也没用。后来被告知放到deploy目录下去。然而我把那个改了MF的jar放到那儿并没有被 自动安装到fuse中。另一没有修改的,在第二天的时候是成功的安装了上去。而且export了所有的packages。这个可能是deploy的特别的地方。 但是既然这样可以,那么fuse必然提供了一种机制,可以在MF文件之外指定需要export的packages。

@zarzen
zarzen / cmd.org
Last active November 20, 2015 06:12
windows cmd tips
@zarzen
zarzen / tools_list.org
Last active December 14, 2015 08:33
Tools List for Productive and Interesting
@zarzen
zarzen / chatting.txt
Created December 22, 2015 07:57
for chatting
xx
@zarzen
zarzen / login.js
Created December 22, 2015 08:16
passport local strategy
var passport = require('passport');
var LocalStrategy = require('passport-local').Strategy;
module.exports = (function () {}(
return {
configureApp : function (app){
passport.use(new LocalStrategy(function (username, password, done) {
process.nextTick(function() {
done(null, {
userName: 'admin',
@zarzen
zarzen / basic.org
Created July 10, 2015 02:34
Emacs Learning

Under Terminal

multi term

multi term环境下利用`C-z`来进入evil-mode,这样就可以通过evil-mode的光标移动来查看历史

@zarzen
zarzen / logistic_sgd_notes.py
Created March 25, 2015 14:19
Theano教程阅读——随机梯度的逻辑回归代码
# -*- coding: utf-8 -*-
"""
This tutorial introduces logistic regression using Theano and stochastic
gradient descent.
Logistic regression is a probabilistic, linear classifier. It is parametrized
by a weight matrix :math:`W` and a bias vector :math:`b`. Classification is
done by projecting data points onto a set of hyperplanes, the distance to
which is used to determine a class membership probability.
  • Get an error while testing
Traceback (most recent call last):
  File "example/image-classification/train_mnist.py", line 1, in <module>
    import find_mxnet
  File "/Users/zarzen/Development/mxnet/example/image-classification/find_mxnet.py", line 2, in <module>
    import mxnet as mx
  File "/usr/local/lib/python2.7/site-packages/mxnet-0.7.0-py2.7.egg/mxnet/__init__.py", line 7, in <module>
    from .base import MXNetError
@zarzen
zarzen / Q1-e-p2
Last active September 12, 2016 13:03
Outer join equivalent
SELECT
p1.cid, p2.cid, p1.n + p2.n
FROM
(SELECT
cid, COUNT(Temp.pid) AS n
FROM
(SELECT DISTINCT
cid, pid
FROM
Purchase) AS Temp