Skip to content
This repository was archived by the owner on Jan 24, 2024. It is now read-only.

Commit 04dc79d

Browse files
committed
initial complete for recognize_digits
1 parent 0a0e290 commit 04dc79d

24 files changed

+1141
-2
lines changed

.pre-commit-config.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
- repo: https://github.com/Lucas-C/pre-commit-hooks.git
2+
sha: c25201a00e6b0514370501050cf2a8538ac12270
3+
hooks:
4+
- id: remove-crlf
5+
- repo: https://github.com/reyoung/mirrors-yapf.git
6+
sha: v0.13.2
7+
hooks:
8+
- id: yapf
9+
files: (.*\.(py|bzl)|BUILD|.*\.BUILD|WORKSPACE)$ # Bazel BUILD files follow Python syntax.
10+
- repo: https://github.com/pre-commit/pre-commit-hooks
11+
sha: 7539d8bd1a00a3c1bfd34cdb606d3a6372e83469
12+
hooks:
13+
- id: check-added-large-files
14+
- id: check-merge-conflict
15+
- id: check-symlinks
16+
- id: detect-private-key
17+
- id: end-of-file-fixer

.style.yapf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[style]
2+
based_on_style = pep8
3+
column_limit = 80

.travis.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
language: cpp
2+
cache: ccache
3+
sudo: required
4+
dist: trusty
5+
os:
6+
- linux
7+
env:
8+
- JOB=PRE_COMMIT
9+
10+
addons:
11+
apt:
12+
packages:
13+
- git
14+
- python
15+
- python-pip
16+
- python2.7-dev
17+
before_install:
18+
- pip install virtualenv pre-commit
19+
script:
20+
- travis/precommit.sh
21+
notifications:
22+
email:
23+
on_success: change
24+
on_failure: always

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# 深度学习入门
22

33
1. [新手入门](fit_a_line/README.md)
4-
1. [个性化推荐](recommender_system/README.md)
54
1. [识别数字](recognize_digits/README.md)
65
1. [图像分类](image_classification/README.md)
76
1. [词向量](word2vec/README.md)
87
1. [情感分析](understand_sentiment/README.md)
98
1. [文本序列标注](label_semantic_roles/README.md)
109
1. [机器翻译](machine_translation/README.md)
10+
1. [个性化推荐](recommender_system/README.md)
1111
1. [图像自动生成](gan/README.md)

0 commit comments

Comments
 (0)