Skip to content

Instantly share code, notes, and snippets.

View Ravicmoon's full-sized avatar

Moonsoo Ra Ravicmoon

View GitHub Profile
@Ravicmoon
Ravicmoon / gunicorn.py
Created June 30, 2021 05:20 — forked from kodekracker/gunicorn.py
A config file of gunicorn(http://gunicorn.org/) contains fundamental configuration.
# -*- coding: utf-8 -*-
# Gunicorn(v19.3) Configuration File
# Reference - http://docs.gunicorn.org/en/19.3/settings.html
#
# To run gunicorn by using this config, run gunicorn by passing
# config file path, ex:
#
# $ gunicorn --config=gunicorn.py MODULE_NAME:VARIABLE_NAME
#
@Ravicmoon
Ravicmoon / PSPNet-101-imagenet.prototxt
Last active July 24, 2019 10:14
PSPNet-101 for training ImageNet
name: "PSPNet101-ImageNet"
layer {
name: "data"
type: "Data"
top: "data"
top: "label"
include {
phase: TRAIN
}
name: "ResNet-101"
input: "data"
input_dim: 1
input_dim: 3
input_dim: 224
input_dim: 224
layer {
bottom: "data"
top: "conv1"