Target detection | common dataset annotation format and conversion code
My blog https://blog.justlovesmile.top/
Target detection is an important research direction in computer vision tasks. It is used to detect specific kinds of visual target instances in digital images. As one of the fundamental problems of computer vision, target detection is the basis and premise of many other computer vision tasks, su ...
Added by stormx on Sat, 11 Sep 2021 22:46:13 +0300
TensorFlow by Google CNN machine learning foundations: EP #5 - classifying real world images
The picture classification structure is convenient for training and testing
1. Use convolution for complex images
https://bit.ly/tfw-lab5
#@title Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apac ...
Added by php_guest on Fri, 10 Sep 2021 03:19:16 +0300
Tree Difference and LCA
Tree Difference and LCA
You can see this video from station b Very nice and highly recommended
LCA
What is LCA
Least Common Ancester, the full name of the LCA, is the latest common ancestor
Ancestor: The point that passes through the path from the root of the tree to the current node (excluding the current node, and because it is a tree, t ...
Added by leon_zilber on Wed, 08 Sep 2021 19:48:57 +0300
pytorch | Dragon Boat Festival learning notes
pytorch learning
import torch
import numpy as np
a=torch.rand(4,3,28,28) #torch.rand(batch_size, channel, row, column)
a[0].shape #batch_ shape with size = 0:
torch.Size([3, 28, 28])
a[0,0].shape #batch_ shape with size = 0 and channel 0:
torch.Size([28, 28])
a[0,0,2,4] #batch_size=0, pixels in Row 2 and column 4 on the 0 ...
Added by tacojohn on Sat, 04 Sep 2021 02:45:12 +0300
100 cases of deep learning - convolutional neural network (perception V3) recognition of sign language | day 13
๐ฑ Hello, I'm ๐ Classmate K๏ผ100 cases of deep learning The series will be updated continuously. Welcome to like ๐, Collection โญ, follow ๐
This paper will use the concept V3 model to realize sign language recognition, focusing on understanding the structure and construction method of the concept V3 model.
1, Preliminary work
My enviro ...
Added by NeoSsjin on Thu, 02 Sep 2021 11:11:57 +0300