GithubHelp home page GithubHelp logo

haibo-qiu / gfnet Goto Github PK

View Code? Open in Web Editor NEW
38.0 38.0 7.0 11.07 MB

[TMLR 2022] Geometric Flow Network for 3D Point Cloud Semantic Segmentation

Home Page: https://haibo-qiu.github.io/GFNet/

Shell 1.09% Python 98.68% Dockerfile 0.22%
deep-learning point-cloud pytorch semantic-segmentation

gfnet's People

Contributors

haibo-qiu avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

gfnet's Issues

about RV score

I use GFnet to train my own dataset, and the performance of the RV branch is very low. I canceled all data augmentation operations. The miou of RV is only about 10, have you ever encountered this problem?

The memory for inference with nuscenes dataset

How much memory is needed for inference with nuscenes? I have 70G of free memory, but I found that the memory was fully occupied and the system hanged. What caused the excessive memory usage? I didn't have this problem during training.

About details.

Hi. Thanks for your open source work. I have some ques about details.

  1. Look like you only use trans Data Aug in Train. And look like the data aug code is similar with salsanext.
    As far as I know, kprnet's special unfolding projection method, also called proj_version='v2' in your code, causes out-of-bounds errors when using data aug, which I think is the reason why you only use one type of aug.
    However, in my past experiments, errors occurred even when using only similar trans Data Aug.
    So I want to know, did the data augmentation work fine in your experiment?

    range:
    max_points: 130000 # max of any scan in dataset
    type: "spherical" # projective
    proj: "v2" # ['v1', 'v2']
    hres: True # good
    flip: False # bad
    trans: True # good
    rot: False # bad

    if whether_aug(self.train):
    if whether_aug(self.train, self.flip):
    self.points[:, 1] = -self.points[:, 1]
    if whether_aug(self.train, self.trans): # should be related to the scale of points coord
    jitter_x = random.uniform(-5, 5)
    jitter_y = random.uniform(-3, 3)
    jitter_z = random.uniform(-1, 1)
    self.points[:, 0] += jitter_x
    self.points[:, 1] += jitter_y
    self.points[:, 2] += jitter_z
    if whether_aug(self.train, self.rot):
    self.points = self.points @ R.random(random_state=1234).as_dcm().T

  2. Have you studied the effect of different choices of K by KNN in kpconv? Your implementation chooses the same 7 as KPRNet, and I'm wondering if this affects performance.

    except:
    tree = kdtree(scan[:, :3])
    _, knns = tree.query(scan[:, :3], k=self.neighbor)

Validation Scores on nuScenes

Hi @haibo-qiu, thank you for open-sourcing your work!

Regarding the experimental results of GFNet, could you share with me what score you got on the val set of nuScenes? Thanks!

How to generate knn files?

Hi, thanks for your great work and share the code!
When I try to reproduce your result, the error occurs because the knn fiiles don't exist. I would like to know how to generate knn files.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.