Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ To avoid issues when installing on the ARM64 architecture, please follow these s

git clone https://github.com/AdaptiveMotorControlLab/CellSeg3d.git
cd CellSeg3d
conda env create -f conda/CellSeg3D_ARM64.yml
conda env create -f conda/napari_CellSeg3D_ARM64.yml
conda activate napari_CellSeg3D_ARM64


Expand Down
3 changes: 3 additions & 0 deletions napari_cellseg3d/_tests/test_plugin_training.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
from pathlib import Path

from monai.utils import set_determinism

from napari_cellseg3d import config
from napari_cellseg3d.code_plugins.plugin_model_training import (
Trainer,
Expand All @@ -11,6 +13,7 @@


def test_worker_configs(make_napari_viewer_proxy):
set_determinism(seed=0)
viewer = make_napari_viewer_proxy()
widget = Trainer(viewer=viewer)
# test supervised config and worker
Expand Down