Skip to content

Commit f541412

Browse files
authored
Update README.md
1 parent b6aee2f commit f541412

File tree

1 file changed

+23
-4
lines changed

1 file changed

+23
-4
lines changed

README.md

+23-4
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,24 @@ This repository contains code to compute Local Shape Descriptors (LSDs) from an
4040

4141
**Notes:**
4242

43+
* Lsds can be installed via conda/mamba through conda-forge channel, e.g:
44+
45+
```
46+
conda create -n lsd_env python=3
47+
conda activate lsd_env
48+
conda install lsds -c conda-forge
49+
```
50+
51+
also via pip:
52+
53+
```
54+
mamba create -n lsd_env python=3
55+
mamba activate lsd_env
56+
pip install lsds
57+
```
58+
59+
* [conda repo](https://github.com/conda-forge/lsds-feedstock), [pypi page](https://pypi.org/project/lsds/0.1.2/)
60+
4361
* Tested on Ubuntu 18.04 with Python 3.
4462

4563
* This is not production level software and was developed in a pure research environment. Therefore some scripts may not work out of the box. For example, all paper networks were originally written using now deprecated tensorflow/cudnn versions and rely on an outdated singularity container. Because of this, the singularity image will not build from the current recipe - if replicating with the current implementations, please reach out for the singularity container (it is too large to upload here). Alternatively, consider reimplementing networks in pytorch (recommended - see [Training](https://github.com/funkelab/lsd/edit/master/README.md#training)).
@@ -62,8 +80,7 @@ The following tutorial allows you to run in the browser using google colab. In o
6280

6381
1) `conda create -n lsd_test python=3`
6482
2) `conda activate lsd_test`
65-
3) `pip install matplotlib scikit-image gunpowder`
66-
4) `pip install git+https://github.com/funkelab/lsd.git`
83+
3) `pip install lsds`
6784

6885
tutorial: [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/funkelab/lsd/blob/master/lsd/tutorial/notebooks/quick_tutorial.ipynb)
6986

@@ -81,7 +98,7 @@ tutorial: [![Open In Colab](https://colab.research.google.com/assets/colab-badge
8198

8299
* If implementing the LSDs in your own training pipeline (i.e pure pytorch/tensorflow), calculate the LSDs on a label array of unique objects and use them as the target for your network (see quick 2d examples above for calculating).
83100

84-
* The following tutorials show how to set up 2D training/prediction pipelines using [Gunpowder](http://funkey.science/gunpowder/). It is recommended to follow them in order (skip the basic tutorial if familiar with gunpowder). **Note:** Google Colab can sometimes be slow especially due to data I/O. These notebooks will run much faster in a jupyter notebook on a local gpu, but the Colab versions should provide a starting point.
101+
* The following tutorials show how to set up 2D training/prediction pipelines using [Gunpowder](https://funkelab.github.io/gunpowder/). It is recommended to follow them in order (skip the basic tutorial if familiar with gunpowder). **Note:** Google Colab can sometimes be slow especially due to data I/O. These notebooks will run much faster in a jupyter notebook on a local gpu, but the Colab versions should provide a starting point.
85102

86103
* Basic Gunpowder tutorial: [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/funkelab/lsd/blob/master/lsd/tutorial/notebooks/basic_gp_tutorial.ipynb)
87104

@@ -108,8 +125,10 @@ tutorial: [![Open In Colab](https://colab.research.google.com/assets/colab-badge
108125
<a name="networks"></a>
109126

110127
## Example networks & pipelines
128+
129+
* There are example scripts for the zebrafinch networks [here](https://github.com/funkelab/lsd_nm_experiments) using the singularity container and tensorflow networks from the paper.
111130

112-
* There are some example networks and training/prediction pipelines from the fib25 dataset [here](https://github.com/funkelab/lsd/tree/tutorial/lsd/tutorial/example_nets/fib25).
131+
* There are some example networks and training/prediction pipelines from the fib25 dataset [here](https://github.com/funkelab/lsd/tree/tutorial/lsd/tutorial/example_nets/fib25). These are just a guideline, several dependencies are now deprecated.
113132

114133
### Training
115134

0 commit comments

Comments
 (0)