LiuDongdong

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

3DkeyPointPaper

level: 2020, CCF_A CVPR author: Yang You, Shanghai Jiao Tong University date: 2020 keyword: 3D keypoint You, Y., Lou, Y., Li, C., Cheng, Z., Li, L., Ma, L., … & Wang, W. (2020). KeypointNet: A Large-scale 3D Keypoint Dataset Aggregated from Numerous Human Annotations. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (pp. 13647-13656). Paper: KeypointNet Summary present keypointnet, the first large-scale and diverse 3D keypoint

ActivateFunction

神经网络中的每个神经元节点接受上一层神经元的输出值作为本神经元的输入值,并将输入值传递给下一层,输入层神经元节点会将输入属性值直接传递给下一

面经_消息队列

1. 消息队列优缺点 优点 消息队列的优点就是:解耦、异步、削峰。 缺点 降低系统的可用性:系统引入的外部依赖越多,越容易挂掉; 系统复杂度提高:使用 MQ 后

DTWClassification

# !pip3.9 install dtaidistance # !pip3.9 install numpy # !pip3.9 install matplotlib from dtaidistance import dtw from dtaidistance import dtw_visualisation as dtwvis from random import sample import numpy as np import matplotlib.pyplot as plt x = np.arange(0, 20, .5) s1 = np.sin(x) s2 = np.sin(x - 1) path = dtw.warping_path(s1, s2) dtwvis.plot_warping(s1, s2, path) distance = dtw.distance(s1, s2) d, paths = dtw.warping_paths(s1, s2, window=20) best_path = dtw.best_path(paths) dtwvis.plot_warpingpaths(s1, s2, paths,

Kubernetes_存储流程详解

1.流程概览 流程如下: 用户创建了一个包含 PVC 的 Pod,该 PVC 要求使用动态存储卷; Scheduler 根据 Pod 配置、节点状态、PV 配置等信息,把 Pod 调度到一个合适的 Worker 节

Kubernetes-存储NFS实践

一、storage存储原理 二、storage存储实战 2.1 安装nfs存储集群 #所有机器安装 yum install -y nfs-utils #nfs主节点 echo "/nfs/data/ *(insecure,rw,sync,no_root_squash)" > /etc/exports mkdir -p /nfs/data systemctl enable rpcbind --now systemctl enable nfs-server --now
0%