Spaces:
Running
Running
Update pages/3_WithExercises.py
Browse files- pages/3_WithExercises.py +14 -24
pages/3_WithExercises.py
CHANGED
@@ -26,8 +26,7 @@ def execute_code(code):
|
|
26 |
exercises = {
|
27 |
"Exercise 1: Create and Manipulate Tensors": {
|
28 |
"description": "Tensors are the core data structure in PyTorch, similar to arrays in NumPy but with additional capabilities for GPU acceleration. This exercise introduces how to create tensors from various data sources such as lists and NumPy arrays. It also covers basic tensor operations like addition, subtraction, and element-wise multiplication, which are fundamental for manipulating data in PyTorch.",
|
29 |
-
"code": '''
|
30 |
-
import torch
|
31 |
import numpy as np
|
32 |
|
33 |
# Creating tensors from Python lists
|
@@ -60,8 +59,7 @@ print("Element-wise Multiplication:", elementwise_multiplication)
|
|
60 |
},
|
61 |
"Exercise 2: Tensor Indexing and Slicing": {
|
62 |
"description": "Indexing and slicing allow you to access and manipulate specific elements and sub-tensors. This is crucial for tasks such as data preprocessing and manipulation in machine learning workflows. This exercise demonstrates how to index and slice tensors to extract and modify elements efficiently.",
|
63 |
-
"code": '''
|
64 |
-
import torch
|
65 |
|
66 |
# Creating a 2D tensor (matrix)
|
67 |
tensor = torch.tensor([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
|
@@ -88,8 +86,7 @@ print("Modified tensor:\n", tensor)
|
|
88 |
},
|
89 |
"Exercise 3: Tensor Reshaping and Transposing": {
|
90 |
"description": "Reshaping and transposing tensors are common operations when preparing data for neural networks. Reshaping allows you to change the layout of tensor data without altering its data. Transposing changes the orientation of the data, which is useful for operations like matrix multiplication. This exercise covers reshaping using `view()` and `reshape()`, and transposing using `transpose()` and `permute()`.",
|
91 |
-
"code": '''
|
92 |
-
import torch
|
93 |
|
94 |
# Creating a 2D tensor
|
95 |
tensor = torch.tensor([[1, 2, 3], [4, 5, 6]])
|
@@ -117,8 +114,7 @@ print("Permuted tensor shape:", permuted_tensor.shape)
|
|
117 |
},
|
118 |
"Exercise 4: Tensor Operations and Broadcasting": {
|
119 |
"description": "Broadcasting in PyTorch allows you to perform arithmetic operations on tensors of different shapes. This can simplify code and reduce the need for explicit reshaping. This exercise demonstrates matrix multiplication, the concept of broadcasting, and the application of element-wise functions like sine and exponential.",
|
120 |
-
"code": '''
|
121 |
-
import torch
|
122 |
|
123 |
# Matrix multiplication
|
124 |
tensor1 = torch.tensor([[1, 2], [3, 4]])
|
@@ -152,8 +148,7 @@ print("Square root of tensor3:", sqrt_result)
|
|
152 |
},
|
153 |
"Exercise 5: Tensor Initialization": {
|
154 |
"description": "Proper initialization of tensors is crucial for neural network training and other machine learning tasks. This exercise explores various methods to initialize tensors, such as filling them with zeros, ones, random values, and specific distributions. Understanding these methods helps in setting up model parameters and test data.",
|
155 |
-
"code": '''
|
156 |
-
import torch
|
157 |
|
158 |
# Creating tensors filled with zeros and ones
|
159 |
zeros_tensor = torch.zeros(3, 3)
|
@@ -187,8 +182,7 @@ print("Uniform distribution tensor:\n", uniform_tensor)
|
|
187 |
},
|
188 |
"Exercise 6: Tensor Arithmetic Operations": {
|
189 |
"description": "Arithmetic operations on tensors are essential for numerous tasks in machine learning, including data preprocessing and neural network computations. This exercise covers basic arithmetic with tensors, in-place operations, and aggregation functions that compute summaries over tensor elements.",
|
190 |
-
"code": '''
|
191 |
-
import torch
|
192 |
|
193 |
# Creating a 1D tensor
|
194 |
tensor = torch.tensor([1.0, 2.0, 3.0])
|
@@ -225,8 +219,7 @@ print("Maximum element:", max_all)
|
|
225 |
},
|
226 |
"Exercise 7: Tensor Comparison and Logical Operations": {
|
227 |
"description": "Comparison and logical operations enable you to make conditional selections and perform logical checks on tensors. This is crucial for tasks such as filtering data and implementing decision-based logic in machine learning workflows. This exercise demonstrates the use of comparison operators and logical functions, which are often used in neural network training and data analysis.",
|
228 |
-
"code": '''
|
229 |
-
import torch
|
230 |
|
231 |
# Creating two tensors for comparison
|
232 |
tensor1 = torch.tensor([1, 2, 3])
|
@@ -262,8 +255,7 @@ print("Conditional selection:", selected_tensor)
|
|
262 |
},
|
263 |
"Exercise 8: Tensor Reduction Operations": {
|
264 |
"description": "Reduction operations aggregate tensor elements along specified dimensions, providing summarized results like sums, means, and indices of maximum or minimum values. This exercise covers essential reduction operations, which are commonly used in loss functions and performance metrics in machine learning.",
|
265 |
-
"code": '''
|
266 |
-
import torch
|
267 |
|
268 |
# Creating a 2D tensor (matrix)
|
269 |
tensor = torch.tensor([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
|
@@ -293,8 +285,7 @@ print("Indices of minimum elements along dimension 0:", argmin_dim0)
|
|
293 |
},
|
294 |
"Exercise 9: Tensor Cloning and Detachment": {
|
295 |
"description": "Cloning and detaching tensors are important when working with gradients in neural networks. Cloning creates a copy of a tensor, while detaching removes it from the computation graph to prevent gradient tracking. This exercise demonstrates these operations, which are crucial for managing tensor operations in complex neural networks.",
|
296 |
-
"code": '''
|
297 |
-
import torch
|
298 |
|
299 |
# Creating a tensor with gradient tracking enabled
|
300 |
tensor = torch.tensor([1.0, 2.0, 3.0], requires_grad=True)
|
@@ -319,8 +310,7 @@ print("Detached tensor remains unchanged:", detached_tensor)
|
|
319 |
},
|
320 |
"Exercise 10: GPU Operations with Tensors": {
|
321 |
"description": "Utilizing GPUs can significantly speed up tensor operations, which is crucial for training large neural networks. This exercise covers checking for GPU availability, moving tensors to GPU, and performing operations on GPU to compare performance with CPU operations.",
|
322 |
-
"code": '''
|
323 |
-
import torch
|
324 |
import time
|
325 |
|
326 |
# Check for GPU availability
|
@@ -384,7 +374,7 @@ if st.button("Run Code"):
|
|
384 |
st.text(output)
|
385 |
|
386 |
# Display returned variables
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
|
|
26 |
exercises = {
|
27 |
"Exercise 1: Create and Manipulate Tensors": {
|
28 |
"description": "Tensors are the core data structure in PyTorch, similar to arrays in NumPy but with additional capabilities for GPU acceleration. This exercise introduces how to create tensors from various data sources such as lists and NumPy arrays. It also covers basic tensor operations like addition, subtraction, and element-wise multiplication, which are fundamental for manipulating data in PyTorch.",
|
29 |
+
"code": '''import torch
|
|
|
30 |
import numpy as np
|
31 |
|
32 |
# Creating tensors from Python lists
|
|
|
59 |
},
|
60 |
"Exercise 2: Tensor Indexing and Slicing": {
|
61 |
"description": "Indexing and slicing allow you to access and manipulate specific elements and sub-tensors. This is crucial for tasks such as data preprocessing and manipulation in machine learning workflows. This exercise demonstrates how to index and slice tensors to extract and modify elements efficiently.",
|
62 |
+
"code": '''import torch
|
|
|
63 |
|
64 |
# Creating a 2D tensor (matrix)
|
65 |
tensor = torch.tensor([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
|
|
|
86 |
},
|
87 |
"Exercise 3: Tensor Reshaping and Transposing": {
|
88 |
"description": "Reshaping and transposing tensors are common operations when preparing data for neural networks. Reshaping allows you to change the layout of tensor data without altering its data. Transposing changes the orientation of the data, which is useful for operations like matrix multiplication. This exercise covers reshaping using `view()` and `reshape()`, and transposing using `transpose()` and `permute()`.",
|
89 |
+
"code": '''import torch
|
|
|
90 |
|
91 |
# Creating a 2D tensor
|
92 |
tensor = torch.tensor([[1, 2, 3], [4, 5, 6]])
|
|
|
114 |
},
|
115 |
"Exercise 4: Tensor Operations and Broadcasting": {
|
116 |
"description": "Broadcasting in PyTorch allows you to perform arithmetic operations on tensors of different shapes. This can simplify code and reduce the need for explicit reshaping. This exercise demonstrates matrix multiplication, the concept of broadcasting, and the application of element-wise functions like sine and exponential.",
|
117 |
+
"code": '''import torch
|
|
|
118 |
|
119 |
# Matrix multiplication
|
120 |
tensor1 = torch.tensor([[1, 2], [3, 4]])
|
|
|
148 |
},
|
149 |
"Exercise 5: Tensor Initialization": {
|
150 |
"description": "Proper initialization of tensors is crucial for neural network training and other machine learning tasks. This exercise explores various methods to initialize tensors, such as filling them with zeros, ones, random values, and specific distributions. Understanding these methods helps in setting up model parameters and test data.",
|
151 |
+
"code": '''import torch
|
|
|
152 |
|
153 |
# Creating tensors filled with zeros and ones
|
154 |
zeros_tensor = torch.zeros(3, 3)
|
|
|
182 |
},
|
183 |
"Exercise 6: Tensor Arithmetic Operations": {
|
184 |
"description": "Arithmetic operations on tensors are essential for numerous tasks in machine learning, including data preprocessing and neural network computations. This exercise covers basic arithmetic with tensors, in-place operations, and aggregation functions that compute summaries over tensor elements.",
|
185 |
+
"code": '''import torch
|
|
|
186 |
|
187 |
# Creating a 1D tensor
|
188 |
tensor = torch.tensor([1.0, 2.0, 3.0])
|
|
|
219 |
},
|
220 |
"Exercise 7: Tensor Comparison and Logical Operations": {
|
221 |
"description": "Comparison and logical operations enable you to make conditional selections and perform logical checks on tensors. This is crucial for tasks such as filtering data and implementing decision-based logic in machine learning workflows. This exercise demonstrates the use of comparison operators and logical functions, which are often used in neural network training and data analysis.",
|
222 |
+
"code": '''import torch
|
|
|
223 |
|
224 |
# Creating two tensors for comparison
|
225 |
tensor1 = torch.tensor([1, 2, 3])
|
|
|
255 |
},
|
256 |
"Exercise 8: Tensor Reduction Operations": {
|
257 |
"description": "Reduction operations aggregate tensor elements along specified dimensions, providing summarized results like sums, means, and indices of maximum or minimum values. This exercise covers essential reduction operations, which are commonly used in loss functions and performance metrics in machine learning.",
|
258 |
+
"code": '''import torch
|
|
|
259 |
|
260 |
# Creating a 2D tensor (matrix)
|
261 |
tensor = torch.tensor([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
|
|
|
285 |
},
|
286 |
"Exercise 9: Tensor Cloning and Detachment": {
|
287 |
"description": "Cloning and detaching tensors are important when working with gradients in neural networks. Cloning creates a copy of a tensor, while detaching removes it from the computation graph to prevent gradient tracking. This exercise demonstrates these operations, which are crucial for managing tensor operations in complex neural networks.",
|
288 |
+
"code": '''import torch
|
|
|
289 |
|
290 |
# Creating a tensor with gradient tracking enabled
|
291 |
tensor = torch.tensor([1.0, 2.0, 3.0], requires_grad=True)
|
|
|
310 |
},
|
311 |
"Exercise 10: GPU Operations with Tensors": {
|
312 |
"description": "Utilizing GPUs can significantly speed up tensor operations, which is crucial for training large neural networks. This exercise covers checking for GPU availability, moving tensors to GPU, and performing operations on GPU to compare performance with CPU operations.",
|
313 |
+
"code": '''import torch
|
|
|
314 |
import time
|
315 |
|
316 |
# Check for GPU availability
|
|
|
374 |
st.text(output)
|
375 |
|
376 |
# Display returned variables
|
377 |
+
if variables:
|
378 |
+
st.subheader('Variables')
|
379 |
+
for key, value in variables.items():
|
380 |
+
st.text(f"{key}: {value}")
|