Skip to content

BlueCat-Community/10-Days-Of-DL

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

91 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

10-Days-Of-DL

License

  • tensorflow 2.0 ์„ ์ด์šฉํ•œ 10์ผ ์™„์„ฑ deep learning
  • Ten days complete deep learning using tenorflow 2.0

๐Ÿ‘‰ Requirements

๐Ÿ’ป Install

See the TensorFlow install guide for the pip package, to enable GPU support, use a Docker container, and build from source.

To install the current release for CPU-only:

$ pip install tensorflow

Use the GPU package for CUDA-enabled GPU cards:

$ pip install tensorflow-gpu

Nightly binaries are available for testing using the tf-nightly and tf-nightly-gpu packages on PyPi.

Try your first TensorFlow program

$ python
>>> import tensorflow as tf
>>> tf.enable_eager_execution()
>>> tf.add(1, 2).numpy()
3
>>> hello = tf.constant('Hello, TensorFlow!')
>>> hello.numpy()
'Hello, TensorFlow!'

For more examples, see the TensorFlow tutorials.

๐Ÿ“– Course

Day1: Machine Learning ๊ธฐ๋ณธ

Day2: Linear Regression hypothesis & cost

Day3: Linear Regression cost ์ตœ์ ํ™” ์•Œ๊ณ ๋ฆฌ์ฆ˜

Day4: Multi-variable Linear regression

Day5: Logistic Classification & cost function

Day6: Softmax regression & cost function

Day7: Rate, Overfitting, Regularization, training & test

๐Ÿ“š Resources

Learn more about the TensorFlow community and how to contribute.

ยฉ๏ธ License

 Copyright 2019 Team Daliy_Learning in BlueCat-Community

 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at
 
 http://www.apache.org/licenses/LICENSE-2.0

 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.