LiuDongdong

爱好由来落笔难,一诗千改心始安。

vscodeModelPNG

1. ResMLP ResMLP, an architecture built entirely upon multi-layer perceptrons for image classification. It is a simple residual network that alternates (i) a linear layer in which image patches interact, independently and identically across channels, and (ii) a two-layer feed-forward network in which channels interact independently per patch. When trained with a modern training strategy using heavy data-augmentation and optionally distillation, it attains surprisingly good accuracy/complexity trade-offs on ImageNet. 2.

Pytorch3D

Chaton, Thomas, et al. “Torch-Points3D: A Modular Multi-Task Frameworkfor Reproducible Deep Learning on 3D Point Clouds.” arXiv preprint arXiv:2010.04642 (2020). [pdf] [code]

FRFNTPTN

0. python统计函数 import numpy as np layerData = np.loadtxt(open('./data/layer_test_acc.csv', "r"), delimiter=",", skiprows=1,dtype=str) import seaborn as sns from sklearn.metrics import confusion_matrix import matplotlib.pyplot as plt sns.set() from sklearn.metrics import precision_score from sklearn.metrics import recall_score print(len(ground),len(predict)) C2= confusion_matrix(ground, predict, labels=[0,1]) #print(ground) #print(C2) #https://scikit-learn.org/stable/modules/generated/sklearn.metrics.confusion_matrix.html result=C2.ravel() print(C2.ravel(),C2.ravel()/len(ground)) print("speed:{}- layer:{}- distance:{} -slop:{} -accuracy:{} -TN:{} -FP:{} -FN:{} -TP:{} -Pr:{} -Recal:{}".format(0.15,2,0.3,0,count/len(ground),result[0],result[1],result[2],result[3],precision_score(ground,predict),recall_score(ground,predict))) sns.heatmap(C2,annot=True) # f, (ax1,ax2) = plt.subplots(figsize =
0%