Difference between revisions of "DSC180F20W7"
From Immersive Visualization Lab Wiki
(→Replication Checkpoint #2) |
|||
Line 3: | Line 3: | ||
UNDER CONSTRUCTION | UNDER CONSTRUCTION | ||
− | For Checkpoint 2 we are going to add deep learning to our toolkit, in order to eventually apply | + | For Checkpoint 2 we are going to add deep learning to our toolkit, in order to eventually apply the Grad-CAM XAI techniques to the COCO dataset (but that will not happen until the final checkpoint). |
− | PyTorch is a machine learning API which builds on top of Torch. | + | PyTorch is a machine learning API which builds on top of Torch. Its most developed interface is in Python. |
− | + | ==Code Portion== | |
− | + | For this checkpoint you need to create a PyTorch application in Python to do the following things: | |
− | + | ||
− | + | ||
− | + | * [https://medium.com/howtoai/pytorch-torchvision-coco-dataset-b7f5e8cad82 Import the COCO dataset using the torchvision package.] | |
− | + | * Teach a convolutional neural network image classification, using the COCO dataset. | |
− | + | * Implement a demo for your image classification algorithm and analyze its results. | |
− | + | ||
− | * | + | |
− | + | ||
− | + | ||
− | + | ||
− | * | + | |
− | + | ||
− | + | ||
− | + |
Revision as of 22:03, 11 November 2020
Replication Checkpoint #2
UNDER CONSTRUCTION
For Checkpoint 2 we are going to add deep learning to our toolkit, in order to eventually apply the Grad-CAM XAI techniques to the COCO dataset (but that will not happen until the final checkpoint).
PyTorch is a machine learning API which builds on top of Torch. Its most developed interface is in Python.
Code Portion
For this checkpoint you need to create a PyTorch application in Python to do the following things:
- Import the COCO dataset using the torchvision package.
- Teach a convolutional neural network image classification, using the COCO dataset.
- Implement a demo for your image classification algorithm and analyze its results.