-
Notifications
You must be signed in to change notification settings - Fork 13
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
46 changed files
with
971 additions
and
969 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
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
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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
footer span.commit code, | ||
.rst-content pre.literal-block, | ||
.rst-content div[class^='highlight'] pre, | ||
.rst-content .linenodiv pre, | ||
.rst-content tt, | ||
.rst-content code, | ||
.rst-content pre, | ||
.rst-content kbd, | ||
.rst-content samp { | ||
font-family: 'IBM Plex Mono', monospace; | ||
font-size: 0.8rem; | ||
} | ||
|
||
footer { | ||
color: var(--text-color); | ||
} | ||
footer .footer-small-text { | ||
font-weight: 300; | ||
font-size: 0.9rem; | ||
} | ||
footer .copyright { | ||
font-weight: 300; | ||
font-size: 0.8rem; | ||
} | ||
footer div.logo { | ||
display: flex; | ||
flex-wrap: wrap; | ||
justify-content: space-around; | ||
margin: 0px; | ||
padding: 10px 0px 0px 0px; | ||
} | ||
footer a.logo { | ||
/* Using flex here (to vertically align the child img) causes aspect-ratio issues */ | ||
flex-basis: 120px; | ||
margin: 10px auto 10px auto; | ||
text-align: center; | ||
} | ||
footer a.logo:hover { | ||
text-decoration: none; | ||
} | ||
footer span.logo { | ||
display: inline-block; | ||
height: 100%; | ||
vertical-align: middle; | ||
} | ||
footer img.logo { | ||
display: inline-block; | ||
vertical-align: middle; | ||
height: auto; | ||
} |
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{% block extrafooter %} | ||
|
||
<div class="footer-container" style="text-align: center;"> | ||
<div class="footer-small-text"> | ||
<br> All <a href="https://github.com/VectorInstitute/cyclops">source code for cyclops</a> is freely available under the terms of an <a href="https://opensource.org/licenses/Apache-2.0">Apache-2.0</a> license. | ||
</div> | ||
|
||
<div class="footer-small-text"> | ||
This work is made possible due to the data obtained from the <a href="https://www.geminimedicine.ca/">GEMINI study</a>. | ||
</div> | ||
|
||
<hr/> | ||
|
||
<div class="logo"> | ||
<a class="logo" href="https://vectorinstitute.ai/"> | ||
<span class="logo"></span> | ||
<img alt="Logo of the Vector Institute" style="width:90px; max-width:90px;" src="{{ pathto('_static/logos/vector_logo.png', 1) }}" /> | ||
</a> | ||
<a class="logo" href="https://www.geminimedicine.ca/"> | ||
<span class="logo"></span> | ||
<img alt="Logo of GEMINI" style="width:90px; max-width:90px;" src="{{ pathto('_static/logos/gemini_logo.png', 1) }}" /> | ||
</a> | ||
</div> | ||
</div> | ||
|
||
{% endblock %} |
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
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
🧑🏿💻 Developing | ||
======================= | ||
|
||
Using poetry | ||
------------ | ||
|
||
The development environment can be set up using `poetry <https://python-poetry.org/docs/#installation>`__. Hence, make sure it is installed and then run: | ||
|
||
.. code:: bash | ||
python3 -m poetry install | ||
source $(poetry env info --path)/bin/activate | ||
In order to install dependencies for testing (codestyle, unit tests, integration tests), run: | ||
|
||
.. code:: bash | ||
python3 -m poetry install --with test | ||
API documentation is built using `Sphinx <https://www.sphinx-doc.org/en/master/>`__ and can be locally built by: | ||
|
||
.. code:: bash | ||
python3 -m poetry install --with docs | ||
cd docs | ||
make html SPHINXOPTS="-D nbsphinx_allow_errors=True" | ||
If you need to build the documentations locally, make sure to install ``Pandoc`` in addition to ``docs`` poetry group. | ||
|
||
Contributing | ||
------------ | ||
|
||
Contributing to cyclops is welcomed. See `Contributing <https://vectorinstitute.github.io/cyclops/api/contributing.html>`__ for guidelines. |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Evaluation | ||
========== |
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
Installation | ||
============ | ||
|
||
Using pip | ||
--------- | ||
|
||
.. code:: bash | ||
python3 -m pip install pycyclops | ||
``cyclops`` has many optional dependencies that are used for specific functionality. For example, the `monai <https://github.com/Project-MONAI/MONAI>`__ library is used for loading DICOM images to create datasets. All optional dependencies can be installed with ``pycyclops[all]``, and specific sets of dependencies are listed in the sections below. | ||
|
||
+-----------------------------+--------------------------+---------------------------------------------------------------------------------------------------------------+ | ||
| Dependency | pip extra | Notes | | ||
+=============================+==========================+===============================================================================================================+ | ||
| xgboost | xgboost | Allows use of `XGBoost <https://xgboost.readthedocs.io/en/stable/>`__ model | | ||
+-----------------------------+--------------------------+---------------------------------------------------------------------------------------------------------------+ | ||
| torch | torch | Allows use of `PyTorch <https://pytorch.org/>`__ models | | ||
+-----------------------------+--------------------------+---------------------------------------------------------------------------------------------------------------+ | ||
| torchvision | torchvision | Allows use of `Torchvision <https://pytorch.org/vision/stable/index.html>`__ library | | ||
+-----------------------------+--------------------------+---------------------------------------------------------------------------------------------------------------+ | ||
| torchxrayvision | torchxrayvision | Uses `TorchXRayVision <https://mlmed.org/torchxrayvision/>`__ library | | ||
+-----------------------------+--------------------------+---------------------------------------------------------------------------------------------------------------+ | ||
| monai | monai | Uses `MONAI <https://github.com/Project-MONAI/MONAI>`__ to load and transform images | | ||
+-----------------------------+--------------------------+---------------------------------------------------------------------------------------------------------------+ | ||
| alibi | alibi | Uses `Alibi <https://docs.seldon.io/projects/alibi/en/stable/>`__ for additional explainability functionality | | ||
+-----------------------------+--------------------------+---------------------------------------------------------------------------------------------------------------+ | ||
| alibi-detect | alibi-detect | Uses `Alibi Detect <https://docs.seldon.io/projects/alibi-detect/en/stable/>`__ for dataset shift detection | | ||
+-----------------------------+--------------------------+---------------------------------------------------------------------------------------------------------------+ |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Model Report | ||
============ |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Monitoring | ||
========== |
Oops, something went wrong.