Skip to content
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

同步 #1

Open
wants to merge 38 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
e13cc38
.
HuguesTHOMAS Jul 30, 2021
3d683b6
relu at head softmax correction
HuguesTHOMAS Jul 30, 2021
d1bb1ca
Adding pretrained weights S3DIS
HuguesTHOMAS Aug 2, 2021
aee5494
.
HuguesTHOMAS Aug 4, 2021
cf1f063
.
HuguesTHOMAS Aug 5, 2021
73e444d
.
HuguesTHOMAS Sep 27, 2021
e600c16
Correction of the S3DIS random indice generation
HuguesTHOMAS Feb 28, 2022
9a18c66
.
HuguesTHOMAS Apr 4, 2022
5b5641e
.
HuguesTHOMAS Apr 4, 2022
7255680
failed attempt correction
HuguesTHOMAS Apr 6, 2022
4cebd54
Test set: correct ignored labels column
HuguesTHOMAS Apr 11, 2022
7adbf9e
adding NPM3D support
HuguesTHOMAS Apr 13, 2022
3a774ff
adding NPM3D support
HuguesTHOMAS Apr 13, 2022
8436294
.
HuguesTHOMAS Jul 11, 2022
7d4c03d
.
HuguesTHOMAS Jul 11, 2022
893891e
Update visualization_guide.md
LucHayward Jul 18, 2022
0de4ed9
Merge pull request #187 from LucHayward/patch-1
HuguesTHOMAS Jul 18, 2022
d33c4d2
.
HuguesTHOMAS Jul 18, 2022
e5be3ce
Merge branch 'master' of https://github.com/HuguesTHOMAS/KPConv-PyTorch
HuguesTHOMAS Jul 18, 2022
d0ac818
.
HuguesTHOMAS Jul 18, 2022
1defcd7
.
HuguesTHOMAS Jul 18, 2022
b2af237
fixing bug in random_sampling for NPM3D
Apr 24, 2023
d539123
Merge pull request #216 from meyerjo/fix_random_sampling
HuguesTHOMAS Apr 24, 2023
743d03c
Add MIT Licence
LucHayward May 1, 2023
6802968
Merge pull request #217 from LucHayward/add-licence
HuguesTHOMAS May 2, 2023
480828f
Add Toronto3D dataset
Yarroudh Aug 20, 2023
c9af4f8
Add Toronto3D dataset
Yarroudh Aug 20, 2023
8f4ee6e
Update Toronto3D.py
Yarroudh Aug 20, 2023
1774049
Update train_Toronto3D.py
Yarroudh Aug 20, 2023
ea1ff66
Update Toronto3D.py
Yarroudh Aug 21, 2023
b814fea
Update test_models.py
Yarroudh Aug 21, 2023
8ec7478
Merge pull request #227 from Yarroudh/yarroudh-toronto3d
HuguesTHOMAS Aug 21, 2023
435d117
random noise on center_point correction
HuguesTHOMAS Feb 6, 2024
e2907df
feat: add Sensat Urban Dataset
benekoehler Jun 17, 2024
bd4d595
chore: update
benekoehler Jun 18, 2024
21f8c65
fix: validation split
benekoehler Jun 24, 2024
c9c4abc
feat: add class weights
benekoehler Jul 5, 2024
22a1788
Merge pull request #248 from benekoehler/master
HuguesTHOMAS Jul 5, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
.
  • Loading branch information
HuguesTHOMAS committed Jul 11, 2022
commit 7d4c03d1996d31bf3330d6652ce3604afbe5345b
2 changes: 2 additions & 0 deletions datasets/SemanticKitti.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,8 @@ def __getitem__(self, batch_i):

# Update epoch indice
self.epoch_i += 1
if self.epoch_i >= int(self.epoch_inds.shape[0]):
self.epoch_i -= int(self.epoch_inds.shape[0])

s_ind, f_ind = self.all_inds[ind]

Expand Down