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

Commit

Permalink
initial complete for recognize_digits
Browse files Browse the repository at this point in the history
  • Loading branch information
dayhaha committed Jan 3, 2017
1 parent 0a0e290 commit 04dc79d
Show file tree
Hide file tree
Showing 24 changed files with 1,141 additions and 2 deletions.
17 changes: 17 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
- repo: https://github.com/Lucas-C/pre-commit-hooks.git
sha: c25201a00e6b0514370501050cf2a8538ac12270
hooks:
- id: remove-crlf
- repo: https://github.com/reyoung/mirrors-yapf.git
sha: v0.13.2
hooks:
- id: yapf
files: (.*\.(py|bzl)|BUILD|.*\.BUILD|WORKSPACE)$ # Bazel BUILD files follow Python syntax.
- repo: https://github.com/pre-commit/pre-commit-hooks
sha: 7539d8bd1a00a3c1bfd34cdb606d3a6372e83469
hooks:
- id: check-added-large-files
- id: check-merge-conflict
- id: check-symlinks
- id: detect-private-key
- id: end-of-file-fixer
3 changes: 3 additions & 0 deletions .style.yapf
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[style]
based_on_style = pep8
column_limit = 80
24 changes: 24 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
language: cpp
cache: ccache
sudo: required
dist: trusty
os:
- linux
env:
- JOB=PRE_COMMIT

addons:
apt:
packages:
- git
- python
- python-pip
- python2.7-dev
before_install:
- pip install virtualenv pre-commit
script:
- travis/precommit.sh
notifications:
email:
on_success: change
on_failure: always
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# 深度学习入门

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

0 comments on commit 04dc79d

Please sign in to comment.