Skip to content
Snippets Groups Projects
Commit 283fad61 authored by Alán Muñoz's avatar Alán Muñoz
Browse files

update docs

parent 9ad3b33b
No related branches found
No related tags found
No related merge requests found
"""
Underlying methods for different neural network deployments.
"""
import collections import collections
import itertools import itertools
import json import json
......
"""
Neural network initialisation.
"""
import numpy as np import numpy as np
from time import perf_counter from time import perf_counter
from pathlib import Path from pathlib import Path
......
"""
Methods and classes to fetch image data and metadata.
"""
"""Experimental methods to deal with multiple experiments and data aggregation."""
from pathos.multiprocessing import Pool from pathos.multiprocessing import Pool
from aliby.pipeline import PipelineParameters, Pipeline from aliby.pipeline import PipelineParameters, Pipeline
......
"""
Select regions from a larger image for efficient processing.
"""
"""
Classes to handle multidimensional images, both remotely and local.
"""
import itertools import itertools
import logging import logging
......
"""Additional tools to fetch and handle datasets programatically.
"""
...@@ -5,22 +5,28 @@ ...@@ -5,22 +5,28 @@
ALIBY's guides and documentation ALIBY's guides and documentation
================================= =================================
.. toctree::
:maxdepth: 3
Summary .. include:: ../../README.md
======= :parser: myst_parser.sphinx_
Contributing
============
.. toctree::
:maxdepth: 2
.. include:: ../../CONTRIBUTING.md
:parser: myst_parser.sphinx_
API Reference
============
.. toctree::
.. autosummary:: .. autosummary::
:toctree: _autosummary
:template: custom-module-template.rst :template: custom-module-template.rst
:recursive: :recursive:
aliby aliby
extraction extraction
================
Readme File
================
```{literalinclude} ../../README.md
:language: md
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment