codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Follow publication

Fastai Course Chapter 4 Q&A on WSL2

David Littlefield
codeburst
Published in
16 min readMay 19, 2021

--

Image by Efe Kurnaz

We’ve spent many weeks writing the questionnaires. And the reason for that, is because we tried to think about what we wanted you to take away from each chapter. So if you read the questionnaire first, you can find out which things we think you should know before you move on, so please make sure to do the questionnaire before you move onto the next chapter.

— Jeremy Howard, Fast.ai

1. How is a grayscale image represented on a computer? How about a color image?

2. How are the files and folders in the MNIST_SAMPLE dataset structured? Why?

3. Explain how the “pixel similarity” approach to classifying digits works.

4. What is a list comprehension? Create one now that selects odd numbers from a list and doubles them.

5. What is a rank-3 tensor?

6. What is the difference between tensor rank and shape? How do you get the rank from the shape?

7. What are RMSE and L1 norm?

8. How can you apply a calculation on thousands of numbers at once, many thousands of times faster than a Python loop?

9. Create a 3×3 tensor or array containing the numbers from 1 to 9. Double it. Select the bottom-right four numbers.

10. What is broadcasting?

11. Are metrics generally calculated using the training set or the validation set? Why?

12. What is SGD?

13. Why does SGD use mini-batches?

14. What are the seven steps in SGD for machine learning?

15. How do we initialize the weights in a model?

16. What is loss?

17. Why can’t we always use a high learning rate?

18. What is a gradient?

19. Do you need to know how to calculate gradients yourself?

variable_name = Tensor(3.).requires_grad_()

20. Why can’t we use accuracy as a loss function?

21. Draw the sigmoid function. What is special about its shape?

22. What is the difference between a loss function and a metric?

23. What is the function to calculate new weights using a learning rate?

24. What does the DataLoader class do?

25. Write pseudocode showing the basic steps taken in each epoch for SGD.

26. Create a function that, if passed two arguments [1,2,3,4] and ‘abcd’, returns [(1, ‘a’), (2, ‘b’), (3, ‘c’), (4, ‘d’)]. What is special about that output data structure?

27. What does view do in PyTorch?

28. What are the bias parameters in a neural network? Why do we need them?

parameters = sum(inputs * weights) + bias

29. What does the @ operator do in Python?

np.matmul(np.matmul(np.matmul(A, B), C), D)A @ B @ C @ D

30. What does the backward method do?

31. Why do we have to zero the gradients?

learning_rate = 1e-5
parameters.data -= learning_rate * parameters.grad.data
parameters.grad = None

32. What information do we have to pass to Learner?

learner = Learner(dataloaders, model, loss_function, optimizer_function, metrics)

33. Show Python or pseudocode for the basic steps of a training loop.

for _ in range(epochs):
prediction = model(x_batch, parameters)
loss = loss(prediction, label)
loss.backward()
for parameterin parameters:
parameter.grad.data += learning_rate * parameter.grad.data
parameter.grad.data = None

34. What is ReLU? Draw a plot of it for values from -2 to +2.

35. What is an activation function?

output = activation_function(parameters)

36. What’s the difference between F.relu and nn.ReLU?

37. The universal approximation theorem shows that any function can be approximated as closely as needed using just one nonlinearity. So why do we normally use more?

“Hopefully, this article helped you get the 👯‍♀️🏆👯‍♀️, remember to subscribe to get more content 🏅”

Next Steps:

WSL2:
01. Install the Fastai Requirements
02. Fastai Course Chapter 1 Q&A
03. Fastai Course Chapter 1
04. Fastai Course Chapter 2 Q&A
05. Fastai Course Chapter 2
06. Fastai Course Chapter 3 Q&A
07. Fastai Course Chapter 3
08. Fastai Course Chapter 4 Q&A

Additional Resources:

Linux:
01. Install and Manage Multiple Python Versions
02. Install the NVIDIA CUDA Driver, Toolkit, cuDNN, and TensorRT
03. Install the Jupyter Notebook Server
04. Install Virtual Environments in Jupyter Notebook
05. Install the Python Environment for AI and Machine Learning
WSL2:
01. Install Windows Subsystem for Linux 2
02. Install and Manage Multiple Python Versions
03. Install the NVIDIA CUDA Driver, Toolkit, cuDNN, and TensorRT
04. Install the Jupyter Notebook Server
05. Install Virtual Environments in Jupyter Notebook
06. Install the Python Environment for AI and Machine Learning
07. Install Ubuntu Desktop With a Graphical User Interface (Bonus)
Windows 10:
01. Install and Manage Multiple Python Versions
02. Install the NVIDIA CUDA Driver, Toolkit, cuDNN, and TensorRT
03. Install the Jupyter Notebook Server
04. Install Virtual Environments in Jupyter Notebook
05. Install the Python Environment for AI and Machine Learning
Mac:
01. Install and Manage Multiple Python Versions
02. Install the Jupyter Notebook Server
03. Install Virtual Environments in Jupyter Notebook
04. Install the Python Environment for AI and Machine Learning

Glossary:

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Published in codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Written by David Littlefield

From: Non-Technical | To: Technical Founder | Writes: To Make It Easier For Everyone | Topics: #Startups #How-To #Coding #AI #Machine Learning #Deep Learning

No responses yet

Write a response