Skip to content

Commit

Permalink
Fix .pylintrc
Browse files Browse the repository at this point in the history
  • Loading branch information
kkweon committed Sep 30, 2018
1 parent ac4917c commit 0c7a8c0
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 13 deletions.
7 changes: 5 additions & 2 deletions .pylintrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
[TYPECHECK]
[MESSAGES CONTROL]
disable=invalid-unary-operand-type,no-member

ignored-modules=numpy,numpy.random,tensorflow,matplotlib,keras,sklearn,chainer,torch,mxnet,torchvision,tqdm
[TYPECHECK]
ignored-modules=numpy,random,tensorflow,matplotlib,keras,sklearn,chainer,torch,mxnet,torchvision,tqdm
ignored-classes=numpy,tuple,SparseTensor
disable=
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,23 @@

[![Build Status](https://travis-ci.org/hunkim/DeepLearningZeroToAll.svg?branch=master)](https://travis-ci.org/hunkim/DeepLearningZeroToAll)

This is code for labs covered in TensorFlow basic tutorials (in Korean) at https://youtu.be/BS6O0zOGX4E.
This is code for labs covered in TensorFlow basic tutorials (in Korean) at https://youtu.be/BS6O0zOGX4E.
(We also have a plan to record videos in English.)

This is work in progress, and may have bugs.
This is work in progress, and may have bugs.
However, we call for your comments and pull requests. Check out our style guide line:

* More TF (1.0) style: use more recent and decent TF APIs.
* More Pythonic: fully leverage the power of python
* Readability (over efficiency): Since it's for instruction purposes, we prefer *readability* over others.
* Readability (over efficiency): Since it's for instruction purposes, we prefer *readability* over others.
* Understandability (over everything): Understanding TF key concepts is the main goal of this code.
* KISS: Keep It Simple Stupid! https://www.techopedia.com/definition/20262/keep-it-simple-stupid-principle-kiss-principle

## Lab slides:

* https://goo.gl/jPtWNt
* https://goo.gl/jPtWNt

We welcome your comments on slides.
We welcome your comments on slides.

## File naming rule:

Expand Down Expand Up @@ -53,7 +53,7 @@ http://stackoverflow.com/questions/31684375
## Contributions/Comments
We always welcome your comments and pull requests.

## Reference Implementations
## Reference Implementations
* https://github.com/nlintz/TensorFlow-Tutorials/
* https://github.com/golbin/TensorFlow-ML-Exercises
* https://github.com/FuZer/Study_TensorFlow
Expand Down
16 changes: 11 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Keras==2.0.2
matplotlib==2.0.0
numpy==1.12.1
tensorflow==1.0.0
scikit_learn==0.18.1
Keras
matplotlib
numpy
tensorflow
scikit_learn
mxnet
sklearn
chainer
torch
torchvision
tqdm
pylint

0 comments on commit 0c7a8c0

Please sign in to comment.