Skip to content

hunkim/DeepLearningZeroToAll

Folders and files

NameName
Last commit message
Last commit date

Latest commit

60c707e · Jul 14, 2022
May 8, 2020
Aug 10, 2017
Jan 10, 2019
Jan 11, 2020
Sep 30, 2018
Jun 13, 2017
Aug 10, 2017
Nov 30, 2019
Jul 14, 2022
Nov 30, 2019
Sep 30, 2018
Dec 3, 2019
Apr 9, 2017
Sep 30, 2018
Mar 13, 2017
Feb 25, 2017
Feb 26, 2017
Mar 1, 2017
May 9, 2017
Jan 15, 2019
Jan 15, 2019
Jan 15, 2019
Jan 15, 2019
Jan 15, 2019
Jan 15, 2019
Jan 15, 2019
Sep 30, 2018
Apr 23, 2017
Jan 10, 2019
Jan 11, 2019
Apr 23, 2017
Jun 14, 2018
Jan 13, 2019
Jan 13, 2019
Jan 13, 2019
Mar 16, 2017
Jan 13, 2019
Jan 13, 2019
Apr 3, 2017
Jan 14, 2019
Jan 14, 2019
Jan 14, 2019
Jan 14, 2019
Apr 23, 2017
Apr 23, 2017
Apr 3, 2017
Jun 27, 2017
Jan 15, 2019
Mar 14, 2017
Mar 14, 2017
Mar 14, 2017
May 8, 2018
Dec 18, 2019
May 25, 2017
Jun 13, 2017
Apr 2, 2017
Apr 9, 2017
Mar 25, 2017
Apr 25, 2017
Apr 15, 2017
Jan 31, 2021
May 4, 2018
Apr 25, 2017
Jan 17, 2019
May 13, 2017
Nov 5, 2019
May 13, 2017
May 19, 2017
Sep 20, 2018
May 13, 2017
May 13, 2017
Apr 2, 2017
Sep 30, 2018

Repository files navigation

Lab code (WIP), but call for comments

Build Status

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. However, we call for your comments and pull requests. Check out our style guide line:

Lab slides:

We welcome your comments on slides.

File naming rule:

  • klab-XX-X-[name].py: Keras labs code
  • lab-XX-X-[name].py: TensorFlow lab code
  • mxlab-XX-X-[name].py: MXNet lab code

Install requirements

pip install -r requirements.txt

Run test and autopep8

TODO: Need to add more test cases

python -m unittest discover -s tests;

# http://stackoverflow.com/questions/14328406/
pip install autopep8 # if you haven't install
autopep8 . --recursive --in-place --pep8-passes 2000 --verbose

Automatically create requirements.txt

pip install pipreqs

pipreqs /path/to/project

http://stackoverflow.com/questions/31684375

Contributions/Comments

We always welcome your comments and pull requests.

Reference Implementations