| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This repository is for HiPoNet, a method designed to learn from high-dimensional point cloud data using multiple graph embeddings and graph wavelet transforms.

The provided Python script trains HiPoNet on a given dataset of point features and associated labels. It uses:
The script:
Install all requirements using:
pip install torch numpy scikit-learn tqdm wandbYou can specify various arguments to customize training:
Before running, ensure that raw_dir points to a directory containing compatible data files. The data loading and preparation code is assumed to be handled within the PointCloudFeatLearning class. Consult that class for specifics on required data format.
Run the script:
python train_pointcloudnet.py --raw_dir path_to_data --num_weights 2 --threshold 0.00005 --gpu 0Adjust parameters as needed. For example:
python train_pointcloudnet.py --gpu -1python train_pointcloudnet.py --lr 0.01 --num_epochs 200The script automatically logs metrics to Weights & Biases if you have an account and have run wandb login locally. If you do not want to use wandb, remove or comment out the wandb lines in the code.
These files can be used to reproduce results or for downstream analysis.
| Back | FazBrowse Home | New Git URL |