https://github.com/nemat-al/architecture-of-neural-networks
Tasks for Architecture of Neural Networks Course @ ITMO University
https://github.com/nemat-al/architecture-of-neural-networks
convolutional-neural-networks dcgan dcgan-pytorch deep-learning gan image-segmentation neural-network-architectures neural-networks neural-networks-from-scratch pytorch u-net
Last synced: 2 months ago
JSON representation
Tasks for Architecture of Neural Networks Course @ ITMO University
- Host: GitHub
- URL: https://github.com/nemat-al/architecture-of-neural-networks
- Owner: nemat-al
- Created: 2024-04-19T15:52:34.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-19T17:03:38.000Z (about 1 year ago)
- Last Synced: 2025-01-23T08:44:34.399Z (4 months ago)
- Topics: convolutional-neural-networks, dcgan, dcgan-pytorch, deep-learning, gan, image-segmentation, neural-network-architectures, neural-networks, neural-networks-from-scratch, pytorch, u-net
- Language: Jupyter Notebook
- Homepage:
- Size: 17.5 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Architecture-of-Neural-Networks
Tasks for Architecture of Neural Networks Course at ITMO University----
## Index
1. [Introduction to Pytorch and NN](#introduction_to_pytorch_and_nn)
2. [CNN Basics](#cnn-basics)
3. [Image segmentation with U-Net](#image-segmentation-with-u-net)
4. [Deep Convolutional Generative Adversarial Network architecture](#deep-convolutional-generative-adversarial-network-architecture)
---## [Introduction to Pytorch and NN](https://github.com/nemat-al/Architecture-of-Neural-Networks/blob/main/Labs/ArchNN_2022_autumn_practice1_answers.ipynb)
The lab file includes :
* PyTorch introductory assignments
* Feedforward Neural Network construction assignment and Training FNN
## [CNN Basics](https://github.com/nemat-al/Architecture-of-Neural-Networks/blob/main/Homeworks/HW1_cnn_basics.ipynb)
This task is devoted to creating convolutional neural network from scratch, using only pure Python and NumPy package.## [Image segmentation with U-Net](https://github.com/nemat-al/Architecture-of-Neural-Networks/blob/main/Homeworks/HW2_Image_Segmentation_UNet.ipynb)
The task is devoted to implement Image segmentation with U-Net. The task uses the Oxford-IIIT Pet Dataset, created by Parkhi et al. The dataset consists of images of 37 pet breeds, with 200 images per breed (~100 each in the train and test split). Each pixel of an animal image corresponds to one of three classes: a pixel belonging to a pet; a pixel located at the border of a pet; all other pixels.## [Deep Convolutional Generative Adversarial Network architecture](https://github.com/nemat-al/Architecture-of-Neural-Networks/blob/main/Homeworks/HW3_DCGAN.ipynb)
The task is devoted to implement the Deep Convolutional Generative Adversarial Network architecture (DCGAN). This task is based on the paper Unsupervised Representation Learning with Deep Convolutional Generative Adversarial Networks. This paper by Alec Radford, Luke Metz, and Soumith Chintala was released in 2016 and has become the baseline for many Convolutional GAN architectures in deep learning. The goal is to learn about the DCGAN architecture from the paper and to implement the model using PyTorch deep learning framework.
Through the task, we were asked to work with the CIFAR10 dataset and try to train models for generating similar images.The generated images can be shown in the [folder](https://github.com/nemat-al/Architecture-of-Neural-Networks/blob/main/files/Homework_3_DCGAN).