Difference between revisions of "DSC180F20W7"

From Immersive Visualization Lab Wiki
Jump to: navigation, search
(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 some XAI techniques (but that will not happen until the final checkpoint).
+
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. It has C++ and Python interfaces, of which we are only going to use the Python interface.
+
PyTorch is a machine learning API which builds on top of Torch. Its most developed interface is in Python.
  
For this checkpoint you need to create PyTorch code in Python to do the following things:
+
==Code Portion==
  
* [https://medium.com/howtoai/pytorch-torchvision-coco-dataset-b7f5e8cad82 import the COCO dataset using the torchvision package]
+
For this checkpoint you need to create a PyTorch application in Python to do the following things:
* teach a convolutional neural network image classification
+
* come up with an image classification demo and analyze its results
+
  
<!--
+
* [https://medium.com/howtoai/pytorch-torchvision-coco-dataset-b7f5e8cad82 Import the COCO dataset using the torchvision package.]
==Report Portion==
+
* Teach a convolutional neural network image classification, using the COCO dataset.
 
+
* Implement a demo for your image classification algorithm and analyze its results.
* Write an EDA that gives a data-driven argument for why the data that you use is appropriate for answering the question in the problem laid out in your introduction.
+
* Write a description of of the methods used in the investigation.
+
 
+
==Code==
+
 
+
* Develop cleaning code.
+
* Develop code that generates analysis/figures for EDA.
+
* Implement the methods that generate results.
+
-->
+

Revision as of 23: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: