Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SVLT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
ALMF
SVLT
Commits
4da7a119
Commit
4da7a119
authored
1 year ago
by
Christopher Randolph Rhodes
Browse files
Options
Downloads
Patches
Plain Diff
Clean test showing that modified HDF5 isn't providing correct results
parent
74716ae8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
extensions/chaeo/examples/test_modify_object_classifier.py
+53
-0
53 additions, 0 deletions
extensions/chaeo/examples/test_modify_object_classifier.py
with
53 additions
and
0 deletions
extensions/chaeo/examples/test_modify_object_classifier.py
0 → 100644
+
53
−
0
View file @
4da7a119
from
pathlib
import
Path
import
shutil
import
h5py
import
numpy
as
np
from
extensions.chaeo.accessors
import
MonoPatchStack
,
MonoPatchStackFromFile
from
extensions.chaeo.models
import
PatchStackObjectClassifier
def
modify_ilastik_object_classifier
(
template_ilp
:
Path
,
lane
=
0
):
where
=
template_ilp
.
parent
proj_name
=
template_ilp
.
stem
new_ilp
=
shutil
.
copy
(
template_ilp
,
where
/
(
'
mod_
'
+
proj_name
+
'
.ilp
'
))
with
h5py
.
File
(
where
/
new_ilp
,
'
r+
'
)
as
h5
:
# delete ObjectExtraction / RegionFeatures / 0000
# delete ObjectClassification/ClassifierForests
for
key
in
[
f
'
ObjectExtraction/RegionFeatures/
{
lane
:
04
d
}
'
,
'
ObjectExtraction/ClassifierForests
'
]:
if
(
key
)
in
h5
.
keys
():
del
h5
[
key
]
assert
key
not
in
h5
.
keys
()
# make links to input data relative
for
gk
in
[
'
Raw Data
'
,
'
Segmentation Image
'
]:
key
=
f
'
Input Data/infos/lane
{
lane
:
04
d
}
/
{
gk
}
'
assert
h5
[
f
'
{
key
}
/location
'
][()]
==
'
FileSystem
'
.
encode
()
pa
=
Path
(
h5
[
f
'
{
key
}
/filePath
'
][()].
decode
())
assert
pa
.
is_absolute
()
rel_pa
=
pa
.
name
assert
(
where
/
rel_pa
).
exists
()
del
h5
[
f
'
{
key
}
/filePath
'
]
h5
[
f
'
{
key
}
/filePath
'
]
=
rel_pa
assert
h5
[
f
'
{
key
}
/filePath
'
][()]
==
rel_pa
.
encode
()
return
new_ilp
if
__name__
==
'
__main__
'
:
where
=
Path
(
'
c:/Users/rhodes/projects/proj0011-plankton-seg/exp0009/output/labeled_patches-20231030-0001
'
)
where_ilp
=
where
/
'
auto_obj_before.ilp
'
new_ilp
=
modify_ilastik_object_classifier
(
where_ilp
)
model
=
PatchStackObjectClassifier
({
'
project_file
'
:
where
/
new_ilp
})
raw
=
MonoPatchStackFromFile
(
where
/
'
zstack_train_raw.tif
'
)
mask
=
MonoPatchStackFromFile
(
where
/
'
zstack_train_mask.tif
'
)
labels
=
MonoPatchStackFromFile
(
where
/
f
'
zstack_train_label.tif
'
)
result
,
_
=
model
.
infer
(
raw
,
mask
)
assert
isinstance
(
result
,
MonoPatchStack
)
print
(
f
'
Unique labels in truth set:
{
np
.
unique
(
labels
.
data
)
}
'
)
print
(
f
'
Unique labels in inferred set:
{
np
.
unique
(
result
.
data
)
}
'
)
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment