Skip to content

Commit

Permalink
Remove num_classes in worker_inference
Browse files Browse the repository at this point in the history
  • Loading branch information
C-Achard committed Dec 14, 2023
1 parent d62f550 commit c1c27e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion napari_cellseg3d/code_models/worker_inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,7 @@ def inference(self):
model = model_class(
input_img_size=[dims, dims, dims],
# device=self.config.device,
num_classes=self.config.model_info.num_classes,
# num_classes=self.config.model_info.num_classes,
)
try:
model = model.to(self.config.device)
Expand Down

0 comments on commit c1c27e9

Please sign in to comment.