Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
model_server
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
Christopher Randolph Rhodes
model_server
Commits
f5e4fc4e
Commit
f5e4fc4e
authored
11 months ago
by
Christopher Randolph Rhodes
Browse files
Options
Downloads
Patches
Plain Diff
Check input against model dimensionality and chroma in all ilastik cases
parent
2dfd9037
No related branches found
Branches containing commit
No related tags found
Tags containing commit
3 merge requests
!37
Release 2024.04.19
,
!34
Revert "Temporary error-handling for debug..."
,
!29
Dev multichannel classifiers
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
model_server/extensions/ilastik/models.py
+11
-9
11 additions, 9 deletions
model_server/extensions/ilastik/models.py
with
11 additions
and
9 deletions
model_server/extensions/ilastik/models.py
+
11
−
9
View file @
f5e4fc4e
...
...
@@ -36,7 +36,6 @@ class IlastikModel(Model):
raise
ParameterExpectedError
(
'
Ilastik model expects a project (*.ilp) file
'
)
self
.
shell
=
None
self
.
axes
=
None
super
().
__init__
(
autoload
,
params
)
def
load
(
self
):
...
...
@@ -65,18 +64,10 @@ class IlastikModel(Model):
raise
ParameterExpectedError
(
f
'
Ilastik project file
{
self
.
project_file
}
does not describe an instance of
{
shell
.
workflow
.
__class__
}
'
)
self
.
axes
=
[
a
[
'
key
'
].
upper
()
for
a
in
json
.
loads
(
h5
[
f
'
Input Data/infos/lane0000/Raw Data/axistags
'
][()])[
'
axes
'
]
]
self
.
shell
=
shell
return
True
class
IlastikPixelClassifierModel
(
IlastikModel
,
SemanticSegmentationModel
):
model_id
=
'
ilastik_pixel_classification
'
operations
=
[
'
segment
'
,
]
@property
def
model_shape_dict
(
self
):
raw_info
=
self
.
shell
.
projectManager
.
currentProjectFile
[
'
Input Data
'
][
'
infos
'
][
'
lane0000
'
][
'
Raw Data
'
]
...
...
@@ -97,6 +88,11 @@ class IlastikPixelClassifierModel(IlastikModel, SemanticSegmentationModel):
def
model_3d
(
self
):
return
self
.
model_shape_dict
[
'
Z
'
]
>
1
class
IlastikPixelClassifierModel
(
IlastikModel
,
SemanticSegmentationModel
):
model_id
=
'
ilastik_pixel_classification
'
operations
=
[
'
segment
'
,
]
@staticmethod
def
get_workflow
():
from
ilastik.workflows
import
PixelClassificationWorkflow
...
...
@@ -145,6 +141,9 @@ class IlastikObjectClassifierFromSegmentationModel(IlastikModel, InstanceSegment
return
ObjectClassificationWorkflowBinary
def
infer
(
self
,
input_img
:
GenericImageDataAccessor
,
segmentation_img
:
GenericImageDataAccessor
)
->
(
np
.
ndarray
,
dict
):
if
self
.
model_chroma
!=
input_img
.
chroma
or
self
.
model_3d
!=
input_img
.
is_3d
():
raise
IlastikInputShapeError
()
assert
segmentation_img
.
is_mask
()
if
isinstance
(
input_img
,
PatchStack
):
assert
isinstance
(
segmentation_img
,
PatchStack
)
...
...
@@ -202,6 +201,9 @@ class IlastikObjectClassifierFromPixelPredictionsModel(IlastikModel, ImageToImag
return
ObjectClassificationWorkflowPrediction
def
infer
(
self
,
input_img
:
GenericImageDataAccessor
,
pxmap_img
:
GenericImageDataAccessor
)
->
(
np
.
ndarray
,
dict
):
if
self
.
model_chroma
!=
input_img
.
chroma
or
self
.
model_3d
!=
input_img
.
is_3d
():
raise
IlastikInputShapeError
()
tagged_input_data
=
vigra
.
taggedView
(
input_img
.
data
,
'
yxcz
'
)
tagged_pxmap_data
=
vigra
.
taggedView
(
pxmap_img
.
data
,
'
yxcz
'
)
...
...
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