All Projects → ageron → Tf2_course

ageron / Tf2_course

Licence: apache-2.0
Notebooks for my "Deep Learning with TensorFlow 2 and Keras" course

Programming Languages

Jupyter Notebook
11667 projects

Projects that are alternatives of or similar to Tf2 course

Diy Alexa
Command recognition research
Stars: ✭ 143 (-92.17%)
Mutual labels:  jupyter-notebook
Face Recognition
Face recognition and its application as attendance system
Stars: ✭ 143 (-92.17%)
Mutual labels:  jupyter-notebook
Graphwave
Stars: ✭ 144 (-92.11%)
Mutual labels:  jupyter-notebook
Pytorch tutorial
A set of jupyter notebooks on pytorch functions with examples
Stars: ✭ 142 (-92.22%)
Mutual labels:  jupyter-notebook
Machinelearning
【火炉炼AI】-机器学习系列文章
Stars: ✭ 144 (-92.11%)
Mutual labels:  jupyter-notebook
Unet
U-Net Biomedical Image Segmentation
Stars: ✭ 144 (-92.11%)
Mutual labels:  jupyter-notebook
Gp
A tutorial about Gaussian process regression
Stars: ✭ 141 (-92.28%)
Mutual labels:  jupyter-notebook
Pycroscopy
Scientific analysis of nanoscale materials imaging data
Stars: ✭ 144 (-92.11%)
Mutual labels:  jupyter-notebook
Elmo Tutorial
A short tutorial on Elmo training (Pre trained, Training on new data, Incremental training)
Stars: ✭ 145 (-92.06%)
Mutual labels:  jupyter-notebook
Python camp
python code for pratice
Stars: ✭ 144 (-92.11%)
Mutual labels:  jupyter-notebook
Pubtabnet
Stars: ✭ 143 (-92.17%)
Mutual labels:  jupyter-notebook
Fall2018 Tutorials
Tutorials for Fall 2018
Stars: ✭ 144 (-92.11%)
Mutual labels:  jupyter-notebook
Multihead Siamese Nets
Implementation of Siamese Neural Networks built upon multihead attention mechanism for text semantic similarity task.
Stars: ✭ 144 (-92.11%)
Mutual labels:  jupyter-notebook
Desafio 2 2020
Stars: ✭ 144 (-92.11%)
Mutual labels:  jupyter-notebook
Cs231n
homework for CS231n 2017
Stars: ✭ 144 (-92.11%)
Mutual labels:  jupyter-notebook
Dive Into Deep Learning Pytorch Pdf
本项目对中文版《动手学深度学习》中的代码进行了PyTorch实现并整理为PDF版本供下载
Stars: ✭ 144 (-92.11%)
Mutual labels:  jupyter-notebook
Alphatrading
An workflow in factor-based equity trading, including factor analysis and factor modeling. For well-established factor models, I implement APT model, BARRA's risk model and dynamic multi-factor model in this project.
Stars: ✭ 144 (-92.11%)
Mutual labels:  jupyter-notebook
Nbashots
NBA shot charts using matplotlib, seaborn, and bokeh.
Stars: ✭ 144 (-92.11%)
Mutual labels:  jupyter-notebook
Python spectrograms and inversion
Spectrograms, MFCCs, and Inversion Demo in a jupyter notebook
Stars: ✭ 144 (-92.11%)
Mutual labels:  jupyter-notebook
Pymc3 models
Stars: ✭ 144 (-92.11%)
Mutual labels:  jupyter-notebook

Deep Learning with TensorFlow 2 and Keras – Notebooks

This project accompanies my Deep Learning with TensorFlow 2 and Keras trainings. It contains the exercises and their solutions, in the form of Jupyter notebooks.

If you are looking for the code accompanying my O'Reilly book, Hands-on Machine Learning with Scikit-Learn and TensorFlow, visit this GitHub project: ageron/handson-ml2.

Quick Start

Want to play with these notebooks online without having to install anything?

Use any of the following services.

WARNING: Please be aware that these services provide temporary environments: anything you do will be deleted after a while, so make sure you download any data you care about.

  • Recommended: open this repository in Colaboratory:

  • Or open it in Binder:

    • Note: Most of the time, Binder starts up quickly and works great, but when tf2_course is updated, Binder creates a new environment from scratch, and this can take quite some time.
  • Or open it in Deepnote:

Just want to quickly look at some notebooks, without executing any code?

Browse this repository using jupyter.org's notebook viewer:

Note: github.com's notebook viewer also works but it is slower and the math equations are not always displayed correctly.

Want to install this project on your own machine?

Start by installing Anaconda (or Miniconda), git, and if you have a TensorFlow-compatible GPU, install the GPU driver, as well as the appropriate version of CUDA and cuDNN (see TensorFlow's documentation for more details).

Next, clone this project by opening a terminal and typing the following commands (do not type the first $ signs on each line, they just indicate that these are terminal commands):

$ git clone https://github.com/ageron/tf2_course.git
$ cd tf2_course

Next, run the following commands:

$ conda env create -f environment.yml
$ conda activate tf2c
$ python -m ipykernel install --user --name=python3

Finally, start Jupyter:

$ jupyter notebook

If you need further instructions, read the detailed installation instructions.

FAQ

Which Python version should I use?

I recommend Python 3.7. If you follow the installation instructions above, that's the version you will get. Most code will work with other versions of Python 3, but some libraries do not support Python 3.8 or 3.9 yet, which is why I recommend Python 3.7.

I'm getting an SSL error on MacOSX

You probably need to install the SSL certificates (see this StackOverflow question). If you downloaded Python from the official website, then run /Applications/Python\ 3.7/Install\ Certificates.command in a terminal (change 3.7 to whatever version you installed). If you installed Python using MacPorts, run sudo port install curl-ca-bundle in a terminal.

I've installed this project locally. How do I update it to the latest version?

See INSTALL.md

How do I update my Python libraries to the latest versions, when using Anaconda?

See INSTALL.md

That's it! Now, have fun learning TensorFlow 2!

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].