Skip to content

Latest commit

 

History

History
93 lines (59 loc) · 2.9 KB

README_EN.md

File metadata and controls

93 lines (59 loc) · 2.9 KB

Basics and Applications of Artificial Intelligence Technology

English | 简体中文


This repository is a companion code to the book "Fundamentals and Applications of Artificial Intelligence Techniques" written by VSISLAB

Chapters 1 do not involve practice, no supporting code

Chapter 2 Neural Network Fundamentals

This chapter mainly introduces the basic design of neural networks, using numpy to implement commonly used modules in neural networks from scratch, and finally building a network that can recognize handwritten digits

Chapter 3 Deep Learning Computational Framework

This chapter mainly introduces the PyTorch deep learning computing framework and uses PyTorch to implement the network in Chapter 2 in a more concise way.

Chapter 4 Convolutional Neural Networks

This chapter introduces the classical convolutional neural network structure, the dataset used for training and testing is FashionMNIST, which will be automatically downloaded to the directory chapter_4/data/FashionMNIST when building Dataloader


Sample in FashionMNIST

FashionMNIST

Chapter 5 Sequence2Sequence

This chapter introduces the classical sequence-to-sequence network, the dataset used for training and testing is aclImdb, which needs to be downloaded to the directory chapter_5/data/aclImdb by the reader.


positive and negative review samples

Download aclImdb

Chapter 6 Object Detection and its Applications

This chapter implements a practical case of human detection, the dataset used for training and testing is Penn-Fudan, there is download scripts in jupyter notebook


human detection

Penn-Fudan

Chapter 7 Semantic Segmentation and its Applications

This chapter implements a practical case of urban street segmentation, the dataset used for training and testing is CamVid, which needs to be downloaded to the directory chapter_7/CamVid.


original image


output of semantic segmentation

CamVid

Download CamVid