3D人体重建 2021-12-15 2596 words 6 mins read 图像重建 图像重建:通过物体外部测量的数据,经数字处理获得三维物体的形状信息的技术。 SMPL模型 它是通过输入一张RGB 的人体图像和由openp Read more...
ex1线性回归 2021-12-15 Machine-Learning 800 words 2 mins read 1 2 3 import numpy as np import pandas as pd import matplotlib.pyplot as plt 1 2 A = np.eye(5) A array([[1., 0., 0., 0., 0.], [0., 1., 0., 0., 0.], [0., 0., 1., 0., 0.], [0., 0., 0., 1., 0.], [0., 0., 0., 0., 1.]]) 单变量的线性回归 整个2的部分需要根据城市人口数量 Read more...
联邦学习 2021-10-30 2936 words 6 mins read 背景介绍 在追逐AI的同时却忽略了一点,AI是靠数据来喂的,而且是大量优质数据。 现实生活中,除了少数巨头公司能够满足,绝大多数企业都存在数据量 Read more...
重新排序得到 2 的幂 2021-10-28 algorithm 5857 words 12 mins read 给定正整数 N ,我们按任何顺序(包括原始顺序)将数字重新排序,注意其前导数字不能为零。 如果我们可以通过上述方式得到 2 的幂,返回 true;否则, Read more...
有效三角形的个数 2021-10-26 algorithm 1710 words 4 mins read 给定一个包含非负整数的数组,你的任务是统计其中可以组成三角形三条边的三元组个数。 1 2 3 4 5 6 7 输入: [2,2,3,4] 输出: 3 解释: 有效的组合是: 2,3,4 (使用第 Read more...