This repository has been archived by the owner on Nov 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 240
Some tweaks #91
Open
kasai2210
wants to merge
25
commits into
qianguih:master
Choose a base branch
from
kasai2210:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Some tweaks #91
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Update README.md
-> Changed import statement for imread. -> Updated directories -> Changed the output_name initialisation statement to actually write-over the existing file
changed tf.app.run(main) to tf.compat.v1.app.run(main) as app.run has been shifted in v2
made compatible with tf version 1 by replacing tf. with tf.compat.v1. wherever possible
made compatible with tf.version 1
made compatible with tf.version1
changed kip_dims to keepdims in line 66
made compatible with tf v1
Made compatible with tf v1
made compatible with tf v1
Changed batch size in line 29, from 2 to 1.
Added comment explaining argparse functions
Added links for understanding tf.Graph(), tf.sess()
Allows for splitting raw Kitti data into training and validation sets
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi!
I am an undergrad and was trying to implement the Voxelnet paper while I came across your repository. I truly appreciate your work and the effort you put in while implementing the paper. But there were some tweaks I had to do make the code train on the dataset. I wanted to include them in your repository(main) so that if anyone else tries to directly implement it then they don't face the same issues. I have just started learning machine learning literature and please tell me if you find anything wrong or unnecessary in the pull request I am making. Thanks.