Switch to unified view

a b/docs-source/source/index.rst
1
.. slideflow documentation master file
2
3
.. figure:: https://i.imgur.com/YrsKN4I.jpeg
4
5
6
7
Slideflow Documentation
8
=======================
9
10
Slideflow is a Python package that provides a unified API for building and testing deep learning models for histopathology, supporting both Tensorflow/Keras and PyTorch.
11
12
Slideflow includes tools for efficient whole-slide image processing, easy and highly customizable model training with uncertainty quantification (UQ), and a number of functional tools to assist with analysis and interpretability, including predictive heatmaps, mosaic maps, GANs, saliency maps, and more. It is built with both `Tensorflow/Keras <https://www.tensorflow.org/>`_ and `PyTorch <https://pytorch.org>`_ backends, with fully cross-compatible TFRecord data storage.
13
14
This documentation starts with a high-level overview of the pipeline and includes examples of how to perform common tasks using the ``Project`` helper class. We also provide several tutorials with examples of how Slideflow can be used and extended for additional functionality.
15
16
.. toctree::
17
   :maxdepth: 1
18
   :caption: Introduction
19
20
   installation
21
   overview
22
   quickstart
23
   project_setup
24
   datasets_and_val
25
   slide_processing
26
   training
27
   evaluation
28
   posthoc
29
   uq
30
   features
31
   mil
32
   ssl
33
   stylegan
34
   saliency
35
   segmentation
36
   cellseg
37
   custom_loops
38
   studio
39
   troubleshooting
40
41
.. toctree::
42
   :maxdepth: 1
43
   :caption: Developer Notes
44
45
   tfrecords
46
   dataloaders
47
   custom_extractors
48
   tile_labels
49
   plugins
50
51
.. toctree::
52
   :maxdepth: 1
53
   :caption: API
54
55
   slideflow
56
   project
57
   dataset
58
   dataset_features
59
   heatmap
60
   model_params
61
   mosaic
62
   slidemap
63
   biscuit
64
   slideflow_cellseg
65
   io
66
   io_tensorflow
67
   io_torch
68
   gan
69
   grad
70
   mil_module
71
   model
72
   model_tensorflow
73
   model_torch
74
   norm
75
   simclr
76
   slide
77
   slide_qc
78
   stats
79
   util
80
   studio_module
81
82
.. toctree::
83
   :maxdepth: 1
84
   :caption: Tutorials
85
86
   tutorial1
87
   tutorial2
88
   tutorial3
89
   tutorial4
90
   tutorial5
91
   tutorial6
92
   tutorial7
93
   tutorial8