-
Notifications
You must be signed in to change notification settings - Fork 138
/
.gitmessage
34 lines (31 loc) · 1.33 KB
/
.gitmessage
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Type: <subject> (<50-characters)
# Body (Wrap it to 72-character)
## What and Why you did:
## The Impact of Change:
*
# Type should be one of the following:
# * feat (new feature)
# * fix (bug fix)
# * docs (changes to documentation)
# * style (formatting, missing semi colons, etc; no code change)
# * refactor (refactoring production code)
# * test (adding missing tests, refactoring tests; no production code change)
# * chore (updating grunt tasks etc; no production code change)
#
# Example Commit Message
# ------------------------------------------------|----------------------|
# feat: Add FancyNormLayer to MyDeepNet
# what: Implement a normalization layer presented in [http:~].
# why: This layer would work better than the current norm layers.
# * Potentially improves classfication accuracy by normalizing input to
# each convolution layers.
# * The paper also reports that the layer would contribute to faster
# convergence with proper hyper parameter of the norm layers.
# * As side effect, the performance may get unstable if mini batch size
# is small.
# ------------------------------------------------|----------------------|
# 72-character wrapped longer description.
# This template is based on:
# https://thoughtbot.com/blog/better-commit-messages-with-a-gitmessage-template
# https://gist.github.com/Linell/bd8100c4e04348c7966d
#