Data Scientist 옌

매일 발전하는 IT문제해결사

728x90

Programing 프로그래밍/Python 파이썬 19

[DeepLearning.AI TensorFlow Developer] C4W4-Assignment: Using real world data

Week 4: Using real world data Welcome! So far you have worked exclusively with generated data. This time you will be using the Daily Minimum Temperatures in Melbourne dataset which contains data of the daily minimum temperatures recorded in Melbourne from 1981 to 1990. In addition to be using Tensorflow's layers for processing sequence data such as Recurrent layers or LSTMs you will also use Con..

[DeepLearning.AI TensorFlow Developer] C4W3-Assignment: Using RNNs to predict time series

Week 3: Using RNNs to predict time series Welcome! In the previous assignment you used a vanilla deep neural network to create forecasts for generated time series. This time you will be using Tensorflow's layers for processing sequence data such as Recurrent layers or LSTMs to see how these two approaches compare. Let's get started! import tensorflow as tf import numpy as np import matplotlib.py..

[DeepLearning.AI TensorFlow Developer] C4W2-Assignment: Predicting time series

Week 2: Predicting time series Welcome! In the previous assignment you got some exposure to working with time series data, but you didn't use machine learning techniques for your forecasts. This week you will be using a deep neural network to create forecasts to see how this technique compares with the ones you already tried out. Once again all of the data is going to be generated. Let's get sta..

[DeepLearning.AI TensorFlow Developer] C4W1-Assignment: Working with time series

Week 1: Working with time series Welcome! In this assignment you will be working with time series data. All of the data is going to be generated and you will implement several functions to split the data, create forecasts and evaluate the quality of those forecasts. Let's get started! import numpy as np import tensorflow as tf from tensorflow import keras import matplotlib.pyplot as plt The next..

[DeepLearning.AI TensorFlow Developer] C3W4-Assignment: Predicting the next word

Week 4: Predicting the next word Welcome to this assignment! During this week you saw how to create a model that will predict the next word in a text sequence, now you will implement such model and train it using a corpus of Shakespeare's sonnets, while also creating some helper functions to pre-process the data. Let's get started! NOTE: To prevent errors from the autograder, please avoid editin..

[DeepLearning.AI TensorFlow Developer] C3W3-Assignment: Exploring Overfitting in NLP

Week 3: Exploring Overfitting in NLP Welcome to this assignment! During this week you saw different ways to handle sequence-like data. You saw how some Keras' layers such as GRU, Conv and LSTM can be used to tackle problems in this space. Now you will put this knowledge into practice by creating a model architecture that does not overfit. For this assignment you will be using a variation of the ..

[DeepLearning.AI TensorFlow Developer] C3W2-Assignment: Diving deeper into the BBC News archive

Week 2: Diving deeper into the BBC News archive Welcome! In this assignment you will be revisiting the BBC News Classification Dataset, which contains 2225 examples of news articles with their respective labels. This time you will not only work with the tokenization process but you will also create a classifier using specialized layers for text data such as Embedding and GlobalAveragePooling1D. ..

[DeepLearning.AI TensorFlow Developer] C3W1-Assignment: Explore the BBC News archive

Week 1: Explore the BBC News archive Welcome! In this assignment you will be working with a variation of the BBC News Classification Dataset, which contains 2225 examples of news articles with their respective categories (labels). Let's get started! import csv from tensorflow.keras.preprocessing.text import Tokenizer from tensorflow.keras.preprocessing.sequence import pad_sequences Begin by look..

[DeepLearning.AI TensorFlow Developer] C2W4-Assignment: Multi-class Classification

Week 4: Multi-class Classification Welcome to this assignment! In this exercise, you will get a chance to work on a multi-class classification problem. You will be using the Sign Language MNIST dataset, which contains 28x28 images of hands depicting the 26 letters of the english alphabet. You will need to pre-process the data so that it can be fed into your convolutional neural network to correc..

[DeepLearning.AI TensorFlow Developer] C2W3-Assignment: Transfer Learning

Week 3: Transfer Learning Welcome to this assignment! This week, you are going to use a technique called Transfer Learning in which you utilize an already trained network to help you solve a similar problem to the one it was originally trained to solve. Let's get started! NOTE: To prevent errors from the autograder, please avoid editing or deleting non-graded cells in this notebook . Please only..

[DeepLearning.AI TensorFlow Developer] C2W2-Assignment: Tackle Overfitting with Data Augmentation

Week 2: Tackle Overfitting with Data Augmentation Welcome to this assignment! As in the previous week, you will be using the famous cats vs dogs dataset to train a model that can classify images of dogs from images of cats. For this, you will create your own Convolutional Neural Network in Tensorflow and leverage Keras' image preprocessing utilities, more so this time around since Keras provides..

[DeepLearning.AI TensorFlow Developer] C2W1-Assignment: Using CNN's with the Cats vs Dogs Dataset

Week 1: Using CNN's with the Cats vs Dogs Dataset Welcome to the 1st assignment of the course! This week, you will be using the famous Cats vs Dogs dataset to train a model that can classify images of dogs from images of cats. For this, you will create your own Convolutional Neural Network in Tensorflow and leverage Keras' image preprocessing utilities. You will also create some helper functions..

728x90