Gitlab Community Edition Instance
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
workshop-forests-in-hpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AG-Compute-public
workshop-forests-in-hpc
Compare revisions
b598850090d775da0457d8da9e14e499090869af to 357ef73476901305786611d183e711b4add2596b
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
hpc-team-public/workshop-forests-in-hpc
Select target project
No results found
357ef73476901305786611d183e711b4add2596b
Select Git revision
Branches
main
1 result
Swap
Target
hpc-team-public/workshop-forests-in-hpc
Select target project
hpc-team-public/workshop-forests-in-hpc
1 result
b598850090d775da0457d8da9e14e499090869af
Select Git revision
Branches
main
1 result
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
fix labels
· bc7ba9bb
Dorothea Sommer
authored
2 years ago
bc7ba9bb
Merge branch 'main' of gitlab-ce.gwdg.de:hauke.gronenberg/workshop-forests-in-hpc into main
· 357ef734
Dorothea Sommer
authored
2 years ago
357ef734
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Pointnet_Example/utils.py
+2
-1
2 additions, 1 deletion
Pointnet_Example/utils.py
with
2 additions
and
1 deletion
Pointnet_Example/utils.py
View file @
357ef734
...
...
@@ -60,7 +60,8 @@ class PointCloudDataSet():
points
=
load_las_file_to_numpy
(
self
.
all_files
[
idx
])
if
self
.
transform
:
points
=
self
.
transform
(
points
)
label
=
self
.
all_labels
.
iloc
[
idx
,
1
:].
species
file_id
=
int
(
self
.
all_files
[
idx
].
split
(
'
/
'
)[
-
1
].
split
(
'
_
'
)[
-
1
].
split
(
'
.
'
)[
0
])
label
=
self
.
all_labels
.
iloc
[
file_id
,
1
:].
species
except
:
print
(
f
"
Problem with reading file number
{
idx
}
at
{
self
.
all_files
[
idx
]
}
"
)
...
...
This diff is collapsed.
Click to expand it.