Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
grp-bio-it
ai4ia
Commits
48c3e34e
Commit
48c3e34e
authored
Jul 17, 2020
by
Constantin Pape
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change all names to ai4ia and rename utils to tools
parent
42daed9d
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
21 additions
and
5 deletions
+21
-5
README.md
README.md
+1
-1
stardist/README.md
stardist/README.md
+1
-1
stardist/setup.py
stardist/setup.py
+3
-3
tools/README.md
tools/README.md
+0
-0
tools/setup.py
tools/setup.py
+16
-0
tools/tools_impl/__init__.py
tools/tools_impl/__init__.py
+0
-0
tools/tools_impl/submit_slurm.py
tools/tools_impl/submit_slurm.py
+0
-0
tools/tools_impl/view_data.py
tools/tools_impl/view_data.py
+0
-0
No files found.
README.md
View file @
48c3e34e
...
...
@@ -4,7 +4,7 @@ Training and inference scripts for deep learning tools for cell segmentation in
Available tools:
-
[
stardist
](
https://github.com/mpicbg-csbd/stardist
)
: stardist for convex object segmentation
-
uti
ls: functionality for visualisation and job submission on compute clusters
-
too
ls: functionality for visualisation and job submission on compute clusters
## Data Layout
...
...
stardist/README.md
View file @
48c3e34e
...
...
@@ -44,7 +44,7 @@ CUDA_VISIBLE_DEVICES=0 predict_stardist_2d /path/to/data /path/to/model
The
`CUDA_VISIBLE_DEVICES=0`
part determines which gpu is used. If you have a machine with multiple GPUs and don't want to
use the first one, you need to change the
`0`
to the id of the GPU you want to use.
In order to run these scripts on the embl via slurm, you can use the
`submit_slurm`
script from
`deep_cell.
uti
ls`
, e.g.
In order to run these scripts on the embl via slurm, you can use the
`submit_slurm`
script from
`deep_cell.
too
ls`
, e.g.
```
submit_slurm train_stardist_2d /path/to/data /path/to/model
```
...
...
stardist/setup.py
View file @
48c3e34e
from
setuptools
import
setup
,
find_packages
setup
(
name
=
"
deep_cell
.stardist"
,
name
=
"
ai4ia
.stardist"
,
packages
=
find_packages
(),
version
=
"0.0.1"
,
author
=
"Constantin Pape"
,
url
=
"https://git
hub.com/constantinpape/deep-cell
"
,
author
=
"Constantin Pape
, Christian Tischer
"
,
url
=
"https://git
.embl.de/grp-bio-it/ai4ia.git
"
,
license
=
'MIT'
,
entry_points
=
{
"console_scripts"
:
[
...
...
uti
ls/README.md
→
too
ls/README.md
View file @
48c3e34e
File moved
uti
ls/setup.py
→
too
ls/setup.py
View file @
48c3e34e
from
setuptools
import
setup
,
find_packages
setup
(
name
=
"
deep_cell.embl_
tools"
,
name
=
"
ai4ia.
tools"
,
packages
=
find_packages
(),
version
=
"0.0.1"
,
author
=
"Constantin Pape"
,
url
=
"https://git
hub.com/constantinpape/deep-cell
"
,
author
=
"Constantin Pape
, Christian Tischer
"
,
url
=
"https://git
.embl.de/grp-bio-it/ai4ia.git
"
,
license
=
'MIT'
,
entry_points
=
{
"console_scripts"
:
[
"view_data =
uti
ls_impl.view_data:main"
,
"submit_slurm =
uti
ls_impl.submit_to_slurm:main"
"view_data =
too
ls_impl.view_data:main"
,
"submit_slurm =
too
ls_impl.submit_to_slurm:main"
]
},
)
utils/uti
ls_impl/__init__.py
→
tools/too
ls_impl/__init__.py
View file @
48c3e34e
File moved
utils/uti
ls_impl/submit_slurm.py
→
tools/too
ls_impl/submit_slurm.py
View file @
48c3e34e
File moved
utils/uti
ls_impl/view_data.py
→
tools/too
ls_impl/view_data.py
View file @
48c3e34e
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment