-
I want to return the nearest neighbor to my data point. However, it is returning the wrong one. I tried returning multiple nearest neighbors and there also seem to be some inconsistencies with the ret…
-
I am running the 'getting_started.ipynb' notebook.
The following lines of code:
`invariants, _ = get_invariants_for_structures(X_names, n_threads=4,
…
-
我使用仿真环境构建了一个机器人,将深度摄像头的数据通过/camera/rgb/image_raw和/camera/depth/image_raw两个话题发布出来,在ros_rgbd.cc里面修改订阅话题,然后编译运行,能够成功运行但是没有点云数据,终端提示如下
Depth Threshold (Close/Far Points): 3.02492
New map created with …
-
Hello. Thank you for your RandLA-Net contribution.
I tried RandLA-Net using only the cpu, but the learning rate is very slow, so I want to utilize the gpu.
Currently, it is possible to learn witho…
-
Hello,
Just a heads up that when following the installation instructions one obtains the following error:
```
/Accounts/gkanaan/.local/lib/python3.9/site-packages/scipy/__init__.py:132: UserWarn…
-
Hello,
I am trying to run xcreate_cross_section code with:
```
mpirun -np 128 ./bin/xcreate_cross_section vsh -H 100.0,1.0 EXAMPLES/DATABASES_MPI/ EXAMPLES/GLL/ EXAMPLES/OUTPUT_FILES/ 1 1
```
…
-
Hello,
unfortunately, I also have a problem right at the start of the plugin.
The steps from the video link and multiple installaition&deinstallation have not fixed the error.
Unfortunately I ca…
-
Given some data X, i want to create tree (KDTree, or Ball)
```
X = [1. 2; 3 4]
@code_warntype KDTree(X)
Body::KDTree{_1,Euclidean,_2} where _2 where _1
75 1 ─ %1 = %new(Distances.Euclidean, 0.0…
-
Hi Team,
We are currently running the HDBSCAN algorithm on a large and diverse dataset using one of our products to execute the script in Python. Below is the script we are using along with the in…
-
Kind of this
```
let a = ([0f64, 0f64], 0);
let b = ([1f64, 0f64], 1);
let mut kdtree = KdTree::new(2);
kdtree.add(a.0, a.1).unwrap();
kdtree.add(b.0, b.1).unwrap();
kdtree.remove(&[0f64, 0…