Interpretation of UNet algorithm principle and implementation of pad

Interpretation of UNet algorithm principle and implementation of pad U-Net network is a very classic image segmentation network, which originates from medical image segmentation. It has the characteristics of few parameters, fast calculation and strong applicability. It has high adaptability to general scenes. U-Net was first proposed in 2015 ...

Posted by judgy on Mon, 14 Feb 2022 11:01:57 +0100

Fine tune the target detection model based on torchvision 0.3 (official tutorial of pytorch)

In this tutorial, we will fine tune the pre trained Mask R-CNN for pedestrian detection and segmentation in Penn Fudan database Model. It contains 170 images and 345 pedestrian instances. We will use it to illustrate how to use the new function in torchvision Yes, so as to train the instance segmentation model on the user-defined data set. ...

Posted by sofasurfer on Mon, 14 Feb 2022 07:19:08 +0100

"IMAGE-CAPTION" image report generation based on CNN-RNN

🐱 Medical text generation based on CNN-RNN This project uses resnet101 network pre trained by IMAGENET to extract image features, The image features are input into LSTM to generate a text description of the image. The simple generation from image to text is preliminarily realized. 📖 0 project background With the rapid development of ...

Posted by twilightnights on Sun, 13 Feb 2022 07:27:39 +0100

Clothing generation project

Please click here View the basic usage of this environment Please click here for more detailed instructions. Project Name: clothing generation (mainly in the field of semantic generation, GAN) Today, I solemnly launched my clothes generation project. Let's applaud. Based on the thesis semantically multi modal image synthesis, I have exp ...

Posted by furma on Sat, 12 Feb 2022 01:59:23 +0100

Reading notes of Python deep learning: Chapter 2 mathematical basis of neural network

catalogue Chapter 2 mathematical basis of neural network 2.1 initial knowledge of neural network 2.2 data representation of neural network 2.2.1 scalar (0D tensor) 2.2.2 vector (1D tensor) 2.2.3 matrix (2D tensor) 2.2.4 3D tensor and higher dimensional tensor 2.2.5 key attributes 2.2.6 manipulating tensors in Numpy 2.2.7 concept of da ...

Posted by hcdarkmage on Fri, 11 Feb 2022 16:36:04 +0100

Simple copy and paste data enhancement

Idea: operate with subscript value Firstly, the mask of the candidate target in the original image is extracted Here are some points to note: We operate by subscript, so we don't need to get the pixel value of the original image. Only the subscript of the corresponding pixel value of the original image can be obtainedWhen getting the subscri ...

Posted by _OwNeD.YoU_ on Fri, 11 Feb 2022 07:57:30 +0100

Introduction notes to deep learning and pytoch

1, Basic operation Chinese document of pythonPytorch https://pytorch-cn.readthedocs.io/zh/latest/package_references/torch-optim/ 1, Anaconda basic operation 1,use conda establish Python Virtual environment (in) conda prompt (completed in environment) conda create -n environment_name python=X.X 2,Activate virtual environment (in) conda prom ...

Posted by cwetherbee on Fri, 11 Feb 2022 01:10:15 +0100

Visualization and graph analysis of dependency parsing in natural language processing (NLP)

Visualization and graph analysis of dependency parsing in natural language processing (NLP) Although the effect of dependency parsing is not as good as that of word segmentation and NER, it also has its use value. In our daily work, we have to deal with it. How to analyze the results of dependency parsing, an important aspect is its visualizat ...

Posted by Quicksilver_0 on Thu, 10 Feb 2022 16:27:47 +0100

[pytorch basics] Tensor and its basic operation

This article is reproduced from: https://zhuanlan.zhihu.com/p/36233589 Record learning only~ summary This chapter is just a summary of the routine operation of pytorch. It's good to have an impression in your mind. You know that there is such a thing. You can look at it in detail when you need it. In addition, you still need to use it in prac ...

Posted by ralba1998 on Thu, 10 Feb 2022 14:49:49 +0100

Ubuntu16.04 installing cuda10 0/cudnn7. 6.5/openpose and problems (graphics card GTX1660 SUPER)

1, Install cuda10 0,CUDNN7. six point five Please follow the blog post below for the installation tutorial ubuntu16.04 installation of CUDA, cuDNN GTX 1660Ti Note: the latest version of graphics card installation and computer graphics card adaptation 2, CUDA unloading steps No need to uninstall the graphics card driver sudo apt-get rem ...

Posted by Optimo on Thu, 10 Feb 2022 02:02:10 +0100