当前位置:网站首页>[paddleseg source code reading] paddleseg calculation dice
[paddleseg source code reading] paddleseg calculation dice
2022-07-04 03:37:00 【Master Fuwen】
D i c e Dice Dice Coefficient is a set similarity measure function , It is usually used to calculate the similarity of two sets , The value range is [ 0 , 1 ] [0, 1] [0,1]:
D i c e ( X , Y ) = 2 ∣ X ∩ Y ∣ ∣ X ∣ + ∣ Y ∣ Dice(X, Y) = \frac {2 | X\cap Y|} { |X| + |Y| } Dice(X,Y)=∣X∣+∣Y∣2∣X∩Y∣
∣ . ∣ |.| ∣.∣ Represents a function that takes the number of set elements
D i c e ( X , Y ) = two person hand over Set element plain Of individual Count × 2 two person element plain Count The amount And and Dice(X, Y) = \frac { The number of elements where the two intersect \times 2} { Sum of the two elements } Dice(X,Y)= two person element plain Count The amount And and two person hand over Set element plain Of individual Count ×2
PaddleSeg
In the implementation of :
def dice(intersect_area, pred_area, label_area):
""" Calculate DICE. Calculation DICE value . Args: intersect_area (Tensor): The intersection area of prediction and ground truth on all classes. pred_area (Tensor): The prediction area on all classes. label_area (Tensor): The ground truth area on all classes. Returns: np.ndarray: DICE on all classes. float: mean DICE of all classes. """
# Transform the three into np.adarray
intersect_area = intersect_area.numpy()
pred_area = pred_area.numpy()
label_area = label_area.numpy()
# The number of two set elements
union = pred_area + label_area
class_dice = []
for i in range(len(intersect_area)): # Start iterating in each class
if union[i] == 0:
# If the molecule is 0, That is, the current image has no such elements
dice = 0
else:
dice = (2 * intersect_area[i]) / union[i]
class_dice.append(dice)
mdice = np.mean(class_dice)
return np.array(class_dice), mdice
intersect_area, pred_area, label_area
These three parameters are passed :
calculate_area(pred, label, num_classes, ignore_index=255)
Calculated , Follow up with a blog :
[PaddleSeg Source code reading ] PaddleSeg Calculation mIoU
边栏推荐
- 2022 registration examination for safety production management personnel of fireworks and firecracker production units and examination skills for safety production management personnel of fireworks an
- 投资深度思考
- Setting methods, usage methods and common usage scenarios of environment variables in postman
- Third party login initial version
- 新型数据中心,助力加快构建以数据为关键要素的数字经济
- Infiltration practice guest account mimikatz sunflower SQL rights lifting offline decryption
- Objective-C description method and type method
- Sword finger offer:55 - I. depth of binary tree
- Wechat official account web page authorization
- Have you entered the workplace since the first 00???
猜你喜欢
选择排序与冒泡排序模板
New year's first race, submit bug reward more!
Stm32bug [the project references devices, files or libraries that are not installed appear in keilmdk]
logistic regression
微信公众号网页授权
1day vulnerability pushback skills practice (3)
Package and download 10 sets of Apple CMS templates / download the source code of Apple CMS video and film website
Session learning diary 1
What is the difference between enterprise wechat applet and wechat applet
Nbear introduction and use diagram
随机推荐
2022-07-03:数组里有0和1,一定要翻转一个区间,翻转:0变1,1变0。 请问翻转后可以使得1的个数最多是多少? 来自小红书。3.13笔试。
Which product is better if you want to go abroad to insure Xinguan?
Solve the problems encountered by the laravel framework using mongodb
Webhook triggers Jenkins for sonar detection
(practice C language every day) pointer sorting problem
Love and self-discipline and strive to live a core life
How to use websocket to realize simple chat function in C #
Want to do something in production? Then try these redis commands
機器學習基礎:用 Lasso 做特征選擇
Objective-C description method and type method
Aperçu du code source futur - série juc
Www 2022 | taxoenrich: self supervised taxonomy complemented by Structural Semantics
Es network layer
XSS prevention
渗透实战-guest账户-mimikatz-向日葵-sql提权-离线解密
[PaddleSeg 源码阅读] PaddleSeg Transform 的 Normalize操作
Audio and video technology development weekly | 232
SQL語句加强練習(MySQL8.0為例)
2006 translation
Practical multifunctional toolbox wechat applet source code / support traffic master