All Projects → BlueCat-Community → 10-Days-Of-DL

BlueCat-Community / 10-Days-Of-DL

Licence: Apache-2.0 license
🐝 10 days of deep learning code.

Programming Languages

Jupyter Notebook
11667 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to 10-Days-Of-DL

zkanji
Japanese language study suite and dictionary
Stars: ✭ 55 (+223.53%)
Mutual labels:  study
gfstudy
go frame框架基础介绍
Stars: ✭ 89 (+423.53%)
Mutual labels:  study
fla.sh
💥 flashcards in your terminal
Stars: ✭ 99 (+482.35%)
Mutual labels:  study
bsu
🎓Repository for university labs on FAMCS, BSU
Stars: ✭ 91 (+435.29%)
Mutual labels:  study
Discord-Study-Bot
Discord-Study-Bot is a Study-Time-based leaderboard system in discord servers. This features an Overall leaderboard and leaderboards based on a Daily, Weekly, and Monthly basis.
Stars: ✭ 20 (+17.65%)
Mutual labels:  study
studynotes
Repositório para armazenar todas as anotações de cursos feitos
Stars: ✭ 92 (+441.18%)
Mutual labels:  study
sustainable-cities-online-courses
My path to a free self-taught education in Sustainable Cities!
Stars: ✭ 15 (-11.76%)
Mutual labels:  study
Node.js
Node.js从入门到放弃学习笔记
Stars: ✭ 56 (+229.41%)
Mutual labels:  study
Flashcard-Maker-Android
Flashcard Maker is a study app that helps to create e-flashcards. It is more convenient to have flashcards on your phone so that you don't carry all the paperwork. You can prepare flashcards in your PC as CSV file and import it from the app.
Stars: ✭ 55 (+223.53%)
Mutual labels:  study
1earn
ffffffff0x 团队维护的安全知识框架,内容包括不仅限于 web安全、工控安全、取证、应急、蓝队设施部署、后渗透、Linux安全、各类靶机writup
Stars: ✭ 3,715 (+21752.94%)
Mutual labels:  study
a-cnn-roadmap
A reading roadmap of CNN and Deep Learning basics.
Stars: ✭ 33 (+94.12%)
Mutual labels:  study
sicp
Yet another scheme to fathom the Structure and Interpretation of Computer Programs.
Stars: ✭ 17 (+0%)
Mutual labels:  study
jornada-big-tech
Jornada Big Tech: I will have 3 months to study and prepare myself for the Big Tech interviews. Repository containing all my study material.
Stars: ✭ 85 (+400%)
Mutual labels:  study
lkm-sandbox
Collection of Linux Kernel Modules and PoC to discover, learn and practice Linux Kernel Development
Stars: ✭ 36 (+111.76%)
Mutual labels:  study
study
✏️ What I Studied
Stars: ✭ 14 (-17.65%)
Mutual labels:  study
houbb.github.io
🧀The blog for github pages.
Stars: ✭ 20 (+17.65%)
Mutual labels:  study
playground
A place to play programming
Stars: ✭ 21 (+23.53%)
Mutual labels:  study
object-book
Study Object book Content Repository / 조영호 님의 오브젝트 책을 학습하고 정리한 Repo입니다.
Stars: ✭ 30 (+76.47%)
Mutual labels:  study
d2l-study-group
Repository supporting the study group based on the course book 'D2L'. Material would be added as we progress through the course.
Stars: ✭ 10 (-41.18%)
Mutual labels:  study
AndroidStudy
Record the Android sample code to a personal study
Stars: ✭ 21 (+23.53%)
Mutual labels:  study

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.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].