-
Notifications
You must be signed in to change notification settings - Fork 113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wanna ask the spec of the computer #88
Comments
Hi @s10627070, I mainly used two 1080ti or two 2080ti for the training. Occasionally, it still went OOM. Kill it and restart, the code will continue from the previous checkpoint. It may be better to use 4 GPUs if available. Thanks, |
For the inference, tensorflow can run on CPU as well. All the needed is to
hide your GPU by ```CUDA_VISIBLE_DEVICES= python run.py ...```.
The training code though assigns batch to devices explicitly. If a lower
accuracy is not an issue, you can downsample the point cloud a lot to
reduce the memory requirements.
The downsampling can be done by increasing the ```base_voxel_size```
in ```_config```
files or use ```scripts/point_cloud_downsample.py``` to downsample the
KITTI dataset directly.
Hope it helps,
Weijing
…On Fri, Nov 5, 2021 at 10:31 AM s10627070 ***@***.***> wrote:
Is there any way I can use only 1 GPU (RTX 3050 Laptop) to run the code?
Becuz I just wanna try this program if it is able to run.
Like deleting most of the datasets ?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#88 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACZ6I7SYURWL3RP7TH2R3LLUKQIIPANCNFSM5HNDBYRQ>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, Weijiing
When I tried to train the point-GNN model, the terminal showed me the error of OOM, may I ask you about the spec of your computer when you were training the Point-GNN ?
BTW thank you for developing such a great GNN model.
The text was updated successfully, but these errors were encountered: