Method of deploying Docker image in IBM Cloud ROKS after it is built

Japanese version reference Docker イメージ ビルドして,IBM CloudのROKSにデプロイしてみた - Qiita This article describes how to create a new image in Docker and deploy it in the ROKS environment of IBM Cloud. The main steps are as follows Step 1 build Docker image  Step 2 push image to IBM Cloud Container Registry  Step 3 deploy on R ...

Posted by ceruleansin on Tue, 05 Oct 2021 01:00:02 +0200

[pytoch series-27]: neural network foundation - multi input neuron to realize house price prediction

Author home page( Silicon based workshop of slow fire rock sugar): Slow fire rock sugar (Wang Wenbing) blog silicon based workshop of slow fire rock sugar _csdnblog Website of this article: https://blog.csdn.net/HiWangWenBing/article/details/120605366 catalogue Introduction deep learning model framework Chapter 1 business area analysis on ...

Posted by isaac_cm on Mon, 04 Oct 2021 22:33:55 +0200

Learning notes of HybridSN: Exploring 3-D – 2-DCNN Feature Hierarchy for Hyperspectral Image Classification

Basic information of the paper Title: HybridSN: Exploring 3-D – 2-DCNN Feature Hierarchy for Hyperspectral Image ClassificationAuthor: swalpa Kumar Roy, student member, IEEE, gopal Krishna, SHIV ram Dubey, member, IEEE, and bidyut B. Chaudhuri, life fellow, IEEETime: 2019Paper address: arXiv:1902.06701v3 [cs.CV] 3 Jul 2019code: https ...

Posted by legohead6 on Mon, 04 Oct 2021 05:08:49 +0200

TensorFlow deep learning: 4.2. Mathematical operation of tensor

Tensor mathematical operations mainly include scalar operations, vector operations and matrix operations. In addition, we will introduce the broadcast mechanism of tensor operation. 1. Scalar operation The mathematical operators of tensors can be divided into scalar operators, vector operators and matrix operators. Addition, subtraction, ...

Posted by asaschool on Mon, 04 Oct 2021 05:04:55 +0200

nn.AvgPool2d -- two dimensional average pooling operation

PyTorch learning notes: nn.AvgPool2d - two dimensional average pooling operation torch.nn.AvgPool2d( kernel_size , stride=None , padding=0 , ceil_mode=False , count_include_pad=True , divisor_override=None ) Function: 2D average pooling operation is applied to the input signal composed of multiple planes. The specific calculation formula is ...

Posted by jsnyder2k on Tue, 28 Sep 2021 20:52:24 +0200

AttributeError: Can't get attribute 'xxx' on <module '__main__' from 'xxx'

AttributeError: Can't get attribute 'xxx' on < module 'main' from 'xxx' another possible solution Problem Restatement: when learning pytorch, I learned to serialize the Word2Seq class using the pickle module and save the serialization in the ws.pkl file. Then I created the lib.py file again. This problem occurs when I deserialize ws.pkl wit ...

Posted by RyanJones on Sat, 25 Sep 2021 11:51:34 +0200

Deep learning series notes 03 multilayer perceptron

1 perceptron The output of the perceptron can be set to 0 or 1; Or - 1, 1. By continuously introducing data points, this line can effectively segment all kinds of training data. It is worth noting that the convergence theorem is a concept in mathematical statistics. Points cannot be taken on the plane to separate such two data (red ...

Posted by mitjakac on Tue, 21 Sep 2021 02:35:00 +0200

Review and summary of pytorch

Today, let's review the data reading mechanism of pytorch torch.utils.data.DataLoader(); Build an iterative data loader. Each for loop and each iteration obtain a batch from the dataloader_ Size data. Have you ever wondered how to load these classes, then read the data, and load them in batch? Today, let's study slowly and deeply to learn what ...

Posted by rmmo on Tue, 21 Sep 2021 00:16:43 +0200

Image convolution operation

image convolution 1 cross correlation operation Strictly speaking, convolution layer is a wrong name, because the operation it expresses is actually cross-correlation operation, not convolution operation. In the convolution layer, the input tensor and kernel tensor generate the output tensor through cross-correlation operation. First, let's ...

Posted by apulmca on Fri, 17 Sep 2021 22:05:11 +0200

Deep learning.22 practice of improving deep neural network

Three methods of initializing parameters First, download the data set and necessary files required for this practice. ( Download link )Put it in the project folder established below. Then open pycharm, create a new project called improved neural network, and then create a new python file called init.py. Three initialization methods are us ...

Posted by LanceT on Thu, 16 Sep 2021 19:23:55 +0200