-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
6 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,11 +31,9 @@ Currently, python>=3.10 is supported. We recommend creating a new conda environm | |
conda create -n dacapo python=3.10 | ||
``` | ||
|
||
Then clone this repository, go into the directory, and install: | ||
Then install DaCapo using pip with the following command: | ||
``` | ||
git clone [email protected]:janelia-cellmap/dacapo.git | ||
cd dacapo | ||
pip install . | ||
pip install git+https://github.com/janelia-cellmap/dacapo | ||
``` | ||
This will install the minimum required dependencies. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
import attr | ||
from .cosem_start import CosemStart | ||
from .start_config import StartConfig | ||
|
||
|
||
@attr.s | ||
class CosemStartConfig: | ||
class CosemStartConfig(StartConfig): | ||
"""Starter for COSEM pretained models. This is a subclass of `StartConfig` and | ||
should be used to initialize the model with pretrained weights from a previous | ||
run. | ||
""" | ||
|
||
start_type = CosemStart | ||
|
||
name: str = attr.ib(metadata={"help_text": "The COSEM checkpoint name to use."}) |