Skip to content

Commit 419feab

Browse files
committed
removed src reference
1 parent 6d2ab05 commit 419feab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/res/guides/custom_model_template.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Advanced : Declaring a custom model
44
=============================================
55

6-
To add a custom model, you will need a **.py** file with the following structure to be placed in the *src/napari_cellseg3d/models* folder:
6+
To add a custom model, you will need a **.py** file with the following structure to be placed in the *napari_cellseg3d/models* folder:
77

88
.. note::
99
**WIP** : Currently you must modify :ref:`model_framework.py` as well : import your model class and add it to the ``model_dict`` attribute
@@ -17,7 +17,7 @@ To add a custom model, you will need a **.py** file with the following structure
1717

1818
def get_weights_file():
1919
return "weights_file.pth" # name of the weights file for the model,
20-
# which should be in *src/napari_cellseg3d/models/saved_weights*
20+
# which should be in *napari_cellseg3d/models/saved_weights*
2121

2222

2323
def get_output(model, input):

0 commit comments

Comments
 (0)