AlexWang1900
Results
2
comments of
AlexWang1900
How about this: ``` import open3d as o3d import numpy as np def pca_compute(data, sort=True): """ SVD decomposition """ average_data = np.mean(data, axis=0) decentration_matrix = data - average_data H =...
the learning rate seems not right, it stopped decreasing at 1e-5,and became 0.0 afterwards