careamics 0.0.1__tar.gz → 0.1.0rc2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of careamics might be problematic. Click here for more details.
- careamics-0.1.0rc2/.github/ISSUE_TEMPLATE/bug_report.md +33 -0
- careamics-0.1.0rc2/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- {careamics-0.0.1 → careamics-0.1.0rc2}/.github/TEST_FAIL_TEMPLATE.md +4 -4
- careamics-0.1.0rc2/.github/dependabot.yml +11 -0
- careamics-0.1.0rc2/.github/pull_request_template.md +22 -0
- careamics-0.1.0rc2/.github/workflows/ci.yml +109 -0
- careamics-0.1.0rc2/.gitignore +5 -0
- careamics-0.1.0rc2/.pre-commit-config.yaml +62 -0
- {careamics-0.0.1 → careamics-0.1.0rc2}/LICENSE +1 -1
- careamics-0.1.0rc2/PKG-INFO +81 -0
- {careamics-0.0.1 → careamics-0.1.0rc2}/README.md +14 -5
- careamics-0.1.0rc2/examples/2D/example_BSD68.ipynb +337 -0
- careamics-0.1.0rc2/examples/2D/example_SEM.ipynb +272 -0
- careamics-0.1.0rc2/examples/2D/n2v_2D_BSD.yml +77 -0
- careamics-0.1.0rc2/examples/2D/n2v_2D_SEM.yml +63 -0
- careamics-0.1.0rc2/examples/3D/example_flywing_3D.ipynb +299 -0
- careamics-0.1.0rc2/examples/3D/n2v_3D.yml +74 -0
- careamics-0.1.0rc2/examples/3D/n2v_flywing_3D.yml +74 -0
- careamics-0.1.0rc2/examples/n2v_full_reference.yml +93 -0
- careamics-0.1.0rc2/pyproject.toml +175 -0
- careamics-0.1.0rc2/src/careamics/__init__.py +14 -0
- careamics-0.1.0rc2/src/careamics/bioimage/__init__.py +15 -0
- careamics-0.1.0rc2/src/careamics/bioimage/docs/Noise2Void.md +5 -0
- careamics-0.1.0rc2/src/careamics/bioimage/docs/__init__.py +1 -0
- careamics-0.1.0rc2/src/careamics/bioimage/io.py +182 -0
- careamics-0.1.0rc2/src/careamics/bioimage/rdf.py +105 -0
- careamics-0.1.0rc2/src/careamics/config/__init__.py +11 -0
- careamics-0.1.0rc2/src/careamics/config/algorithm.py +231 -0
- careamics-0.1.0rc2/src/careamics/config/config.py +297 -0
- careamics-0.1.0rc2/src/careamics/config/config_filter.py +44 -0
- careamics-0.1.0rc2/src/careamics/config/data.py +194 -0
- careamics-0.1.0rc2/src/careamics/config/torch_optim.py +118 -0
- careamics-0.1.0rc2/src/careamics/config/training.py +534 -0
- careamics-0.1.0rc2/src/careamics/dataset/__init__.py +1 -0
- careamics-0.1.0rc2/src/careamics/dataset/dataset_utils.py +111 -0
- careamics-0.1.0rc2/src/careamics/dataset/extraction_strategy.py +21 -0
- careamics-0.1.0rc2/src/careamics/dataset/in_memory_dataset.py +202 -0
- careamics-0.1.0rc2/src/careamics/dataset/patching.py +492 -0
- careamics-0.1.0rc2/src/careamics/dataset/prepare_dataset.py +175 -0
- careamics-0.1.0rc2/src/careamics/dataset/tiff_dataset.py +212 -0
- careamics-0.1.0rc2/src/careamics/engine.py +1014 -0
- careamics-0.1.0rc2/src/careamics/losses/__init__.py +4 -0
- careamics-0.1.0rc2/src/careamics/losses/loss_factory.py +38 -0
- careamics-0.1.0rc2/src/careamics/losses/losses.py +34 -0
- careamics-0.1.0rc2/src/careamics/manipulation/__init__.py +4 -0
- careamics-0.1.0rc2/src/careamics/manipulation/pixel_manipulation.py +158 -0
- careamics-0.1.0rc2/src/careamics/models/__init__.py +4 -0
- careamics-0.1.0rc2/src/careamics/models/layers.py +152 -0
- careamics-0.1.0rc2/src/careamics/models/model_factory.py +251 -0
- careamics-0.1.0rc2/src/careamics/models/unet.py +322 -0
- careamics-0.1.0rc2/src/careamics/prediction/__init__.py +9 -0
- careamics-0.1.0rc2/src/careamics/prediction/prediction_utils.py +106 -0
- careamics-0.1.0rc2/src/careamics/utils/__init__.py +20 -0
- careamics-0.1.0rc2/src/careamics/utils/ascii_logo.txt +9 -0
- careamics-0.1.0rc2/src/careamics/utils/augment.py +65 -0
- careamics-0.1.0rc2/src/careamics/utils/context.py +45 -0
- careamics-0.1.0rc2/src/careamics/utils/logging.py +321 -0
- careamics-0.1.0rc2/src/careamics/utils/metrics.py +160 -0
- careamics-0.1.0rc2/src/careamics/utils/normalization.py +55 -0
- careamics-0.1.0rc2/src/careamics/utils/torch_utils.py +89 -0
- careamics-0.1.0rc2/src/careamics/utils/validators.py +170 -0
- careamics-0.1.0rc2/src/careamics/utils/wandb.py +121 -0
- careamics-0.1.0rc2/tests/__init__.py +1 -0
- careamics-0.1.0rc2/tests/bioimage/test_engine_bmz.py +123 -0
- careamics-0.1.0rc2/tests/bioimage/test_io.py +84 -0
- careamics-0.1.0rc2/tests/bioimage/test_rdf.py +37 -0
- careamics-0.1.0rc2/tests/config/test_algorithm.py +187 -0
- careamics-0.1.0rc2/tests/config/test_config.py +196 -0
- careamics-0.1.0rc2/tests/config/test_config_filters.py +42 -0
- careamics-0.1.0rc2/tests/config/test_data.py +142 -0
- careamics-0.1.0rc2/tests/config/test_torch_optimizer.py +38 -0
- careamics-0.1.0rc2/tests/config/test_training.py +468 -0
- careamics-0.1.0rc2/tests/conftest.py +142 -0
- careamics-0.1.0rc2/tests/dataset/test_dataset_utils.py +149 -0
- careamics-0.1.0rc2/tests/dataset/test_patching.py +211 -0
- careamics-0.1.0rc2/tests/dataset/test_tiff_dataset.py +57 -0
- careamics-0.1.0rc2/tests/manipulation/test_pixel_manipulation.py +81 -0
- careamics-0.1.0rc2/tests/model/test_model.py +26 -0
- careamics-0.1.0rc2/tests/model/test_model_factory.py +2 -0
- careamics-0.1.0rc2/tests/smoke_test.py +134 -0
- careamics-0.1.0rc2/tests/test_augment.py +46 -0
- careamics-0.1.0rc2/tests/test_conftest.py +35 -0
- careamics-0.1.0rc2/tests/test_engine.py +64 -0
- careamics-0.1.0rc2/tests/test_metrics.py +52 -0
- careamics-0.1.0rc2/tests/test_prediction_utils.py +86 -0
- careamics-0.1.0rc2/tests/utils/test_context.py +21 -0
- careamics-0.1.0rc2/tests/utils/test_logging.py +29 -0
- careamics-0.1.0rc2/tests/utils/test_torch_utils.py +22 -0
- careamics-0.1.0rc2/tests/utils/test_validators.py +70 -0
- careamics-0.1.0rc2/tests/utils/test_wandb.py +27 -0
- careamics-0.0.1/.github/ISSUE_TEMPLATE.md +0 -15
- careamics-0.0.1/.github/dependabot.yml +0 -10
- careamics-0.0.1/.github/workflows/ci.yml +0 -108
- careamics-0.0.1/.gitignore +0 -111
- careamics-0.0.1/.pre-commit-config.yaml +0 -34
- careamics-0.0.1/PKG-INFO +0 -46
- careamics-0.0.1/pyproject.toml +0 -144
- careamics-0.0.1/src/careamics/__init__.py +0 -8
- careamics-0.0.1/tests/test_careamics.py +0 -2
- {careamics-0.0.1 → careamics-0.1.0rc2}/src/careamics/py.typed +0 -0
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Bug report
|
|
3
|
+
about: Create a report to help us improve
|
|
4
|
+
title: "[BUG]"
|
|
5
|
+
labels: bug
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
**Describe the bug**
|
|
11
|
+
A clear and concise description of what the bug is.
|
|
12
|
+
|
|
13
|
+
**To Reproduce**
|
|
14
|
+
Code snippet allowing reproducing the behaviour:
|
|
15
|
+
```python
|
|
16
|
+
# code here
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
**Expected behavior**
|
|
20
|
+
A clear and concise description of what you expected to happen.
|
|
21
|
+
|
|
22
|
+
**Screenshots**
|
|
23
|
+
If applicable, add screenshots to help explain your problem.
|
|
24
|
+
|
|
25
|
+
**Desktop (please complete the following information):**
|
|
26
|
+
- OS: [e.g. iOS]
|
|
27
|
+
- Version [e.g. 22]
|
|
28
|
+
|
|
29
|
+
**Environment:**
|
|
30
|
+
Please add here the content of your conda environment with versions.
|
|
31
|
+
|
|
32
|
+
**Additional context**
|
|
33
|
+
Add any other context about the problem here.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Feature request
|
|
3
|
+
about: Suggest an idea for this project
|
|
4
|
+
title: ''
|
|
5
|
+
labels: enhancement
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
**Is your feature request related to a problem? Please describe.**
|
|
11
|
+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
|
12
|
+
|
|
13
|
+
**Describe the solution you'd like**
|
|
14
|
+
A clear and concise description of what you want to happen.
|
|
15
|
+
|
|
16
|
+
**Describe alternatives you've considered**
|
|
17
|
+
A clear and concise description of any alternative solutions or features you've considered.
|
|
18
|
+
|
|
19
|
+
**Additional context**
|
|
20
|
+
Add any other context or screenshots about the feature request here.
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
title: "{{ env.TITLE }}"
|
|
3
3
|
labels: [bug]
|
|
4
4
|
---
|
|
5
|
-
The {{ workflow }} workflow failed on {{ date | date("YYYY-MM-DD HH:mm") }} UTC
|
|
5
|
+
The {{ workflow }} workflow failed on {{ date | date("YYYY-MM-DD HH:mm") }} UTC.
|
|
6
6
|
|
|
7
|
-
The most recent failing test was on {{ env.PLATFORM }} py{{ env.PYTHON }}
|
|
8
|
-
with commit: {{ sha }}
|
|
7
|
+
The most recent failing test was on {{ env.PLATFORM }} py{{ env.PYTHON }} {{ env.BACKEND }}
|
|
8
|
+
with commit: {{ sha }}.
|
|
9
9
|
|
|
10
|
-
Full run: https://github.com/
|
|
10
|
+
Full run: https://github.com/CAREamics/careamics-portfolio/actions/runs/{{ env.RUN_ID }}
|
|
11
11
|
|
|
12
12
|
(This post will be updated if another test fails, as long as this issue remains open.)
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
---
|
|
2
|
+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
|
3
|
+
|
|
4
|
+
version: 2
|
|
5
|
+
updates:
|
|
6
|
+
- package-ecosystem: github-actions
|
|
7
|
+
directory: /
|
|
8
|
+
schedule:
|
|
9
|
+
interval: weekly
|
|
10
|
+
commit-message:
|
|
11
|
+
prefix: 'ci(dependabot):'
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
* **Please check if the PR fulfills these requirements**
|
|
2
|
+
- [ ] The commit message is clear
|
|
3
|
+
- [ ] Pre-commit hooks have been run
|
|
4
|
+
- [ ] Tests for the changes have been added (for bug fixes/features)
|
|
5
|
+
- [ ] Docs have been added / updated (for bug fixes / features)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
* **What kind of change does this PR introduce?** (Bug fix, feature, docs update, ...)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
* **What is the current behavior?** (You can also link to an open issue here)
|
|
12
|
+
<!-- Mention related issues if applicable -->
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
* **What is the new behavior (if this is a feature change)?**
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
* **Does this PR introduce a breaking change?** (What changes might users need to make in their application due to this PR?)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
* **Other information**:
|
|
22
|
+
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: CI
|
|
3
|
+
|
|
4
|
+
on:
|
|
5
|
+
push:
|
|
6
|
+
branches:
|
|
7
|
+
- main
|
|
8
|
+
tags:
|
|
9
|
+
- v*.*.*
|
|
10
|
+
pull_request:
|
|
11
|
+
workflow_dispatch:
|
|
12
|
+
schedule:
|
|
13
|
+
# run every week (for --pre release tests)
|
|
14
|
+
- cron: 0 0 * * 0
|
|
15
|
+
|
|
16
|
+
jobs:
|
|
17
|
+
check-manifest:
|
|
18
|
+
# check-manifest is a tool that checks that all files in version control are
|
|
19
|
+
# included in the sdist (unless explicitly excluded)
|
|
20
|
+
runs-on: ubuntu-latest
|
|
21
|
+
steps:
|
|
22
|
+
- uses: actions/checkout@v4
|
|
23
|
+
- run: pipx run check-manifest
|
|
24
|
+
|
|
25
|
+
test:
|
|
26
|
+
name: ${{ matrix.platform }} (${{ matrix.python-version }})
|
|
27
|
+
runs-on: ${{ matrix.platform }}
|
|
28
|
+
strategy:
|
|
29
|
+
fail-fast: false
|
|
30
|
+
matrix:
|
|
31
|
+
python-version: ['3.8', '3.9', '3.10', '3.11']
|
|
32
|
+
platform: [ubuntu-latest, macos-latest, windows-latest]
|
|
33
|
+
|
|
34
|
+
steps:
|
|
35
|
+
- name: 🛑 Cancel Previous Runs
|
|
36
|
+
uses: styfle/cancel-workflow-action@0.12.0
|
|
37
|
+
with:
|
|
38
|
+
access_token: ${{ github.token }}
|
|
39
|
+
|
|
40
|
+
- uses: actions/checkout@v4
|
|
41
|
+
|
|
42
|
+
- name: 🐍 Set up Python ${{ matrix.python-version }}
|
|
43
|
+
uses: actions/setup-python@v5
|
|
44
|
+
with:
|
|
45
|
+
python-version: ${{ matrix.python-version }}
|
|
46
|
+
cache-dependency-path: pyproject.toml
|
|
47
|
+
cache: pip
|
|
48
|
+
|
|
49
|
+
- name: Install Dependencies
|
|
50
|
+
run: |
|
|
51
|
+
python -m pip install -U pip
|
|
52
|
+
# if running a cron job, we add the --pre flag to test against pre-releases
|
|
53
|
+
python -m pip install .[test] ${{ github.event_name == 'schedule' && '--pre' || '' }}
|
|
54
|
+
|
|
55
|
+
- name: 🧪 Run Tests
|
|
56
|
+
run: pytest --color=yes --cov --cov-report=xml --cov-report=term-missing -m "not gpu"
|
|
57
|
+
|
|
58
|
+
# If something goes wrong with --pre tests, we can open an issue in the repo
|
|
59
|
+
- name: 📝 Report --pre Failures
|
|
60
|
+
if: failure() && github.event_name == 'schedule'
|
|
61
|
+
uses: JasonEtco/create-an-issue@v2
|
|
62
|
+
env:
|
|
63
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
64
|
+
PLATFORM: ${{ matrix.platform }}
|
|
65
|
+
PYTHON: ${{ matrix.python-version }}
|
|
66
|
+
RUN_ID: ${{ github.run_id }}
|
|
67
|
+
TITLE: '[test-bot] pip install --pre is failing'
|
|
68
|
+
with:
|
|
69
|
+
filename: .github/TEST_FAIL_TEMPLATE.md
|
|
70
|
+
update_existing: true
|
|
71
|
+
|
|
72
|
+
- name: Coverage
|
|
73
|
+
uses: codecov/codecov-action@v3
|
|
74
|
+
|
|
75
|
+
deploy:
|
|
76
|
+
name: Deploy
|
|
77
|
+
needs: test
|
|
78
|
+
if: success() && startsWith(github.ref, 'refs/tags/') && github.event_name != 'schedule'
|
|
79
|
+
runs-on: ubuntu-latest
|
|
80
|
+
|
|
81
|
+
permissions:
|
|
82
|
+
# IMPORTANT: this permission is mandatory for trusted publishing on PyPi
|
|
83
|
+
# see https://docs.pypi.org/trusted-publishers/
|
|
84
|
+
id-token: write
|
|
85
|
+
# This permission allows writing releases
|
|
86
|
+
contents: write
|
|
87
|
+
|
|
88
|
+
steps:
|
|
89
|
+
- uses: actions/checkout@v4
|
|
90
|
+
with:
|
|
91
|
+
fetch-depth: 0
|
|
92
|
+
|
|
93
|
+
- name: 🐍 Set up Python
|
|
94
|
+
uses: actions/setup-python@v5
|
|
95
|
+
with:
|
|
96
|
+
python-version: 3.x
|
|
97
|
+
|
|
98
|
+
- name: 👷 Build
|
|
99
|
+
run: |
|
|
100
|
+
python -m pip install build
|
|
101
|
+
python -m build
|
|
102
|
+
|
|
103
|
+
- name: 🚢 Publish to PyPI
|
|
104
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
105
|
+
|
|
106
|
+
- uses: softprops/action-gh-release@v1
|
|
107
|
+
with:
|
|
108
|
+
generate_release_notes: true
|
|
109
|
+
files: ./dist/*
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
---
|
|
2
|
+
# enable pre-commit.ci at https://pre-commit.ci/
|
|
3
|
+
# it adds:
|
|
4
|
+
# 1. auto fixing pull requests
|
|
5
|
+
# 2. auto updating the pre-commit configuration
|
|
6
|
+
ci:
|
|
7
|
+
autoupdate_schedule: monthly
|
|
8
|
+
autofix_commit_msg: 'style(pre-commit.ci): auto fixes [...]'
|
|
9
|
+
autoupdate_commit_msg: 'ci(pre-commit.ci): autoupdate'
|
|
10
|
+
|
|
11
|
+
repos:
|
|
12
|
+
- repo: https://github.com/abravalheri/validate-pyproject
|
|
13
|
+
rev: v0.15
|
|
14
|
+
hooks:
|
|
15
|
+
- id: validate-pyproject
|
|
16
|
+
|
|
17
|
+
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
18
|
+
rev: v0.1.6
|
|
19
|
+
hooks:
|
|
20
|
+
- id: ruff
|
|
21
|
+
args: [--fix, --target-version, py38]
|
|
22
|
+
|
|
23
|
+
- repo: https://github.com/psf/black
|
|
24
|
+
rev: 23.11.0
|
|
25
|
+
hooks:
|
|
26
|
+
- id: black
|
|
27
|
+
|
|
28
|
+
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
29
|
+
rev: v1.7.1
|
|
30
|
+
hooks:
|
|
31
|
+
- id: mypy
|
|
32
|
+
files: ^src/
|
|
33
|
+
additional_dependencies:
|
|
34
|
+
- numpy
|
|
35
|
+
- types-PyYAML
|
|
36
|
+
|
|
37
|
+
# check docstrings
|
|
38
|
+
- repo: https://github.com/numpy/numpydoc
|
|
39
|
+
rev: v1.6.0
|
|
40
|
+
hooks:
|
|
41
|
+
- id: numpydoc-validation
|
|
42
|
+
|
|
43
|
+
# jupyter linting and formatting
|
|
44
|
+
- repo: https://github.com/nbQA-dev/nbQA
|
|
45
|
+
rev: 1.7.1
|
|
46
|
+
hooks:
|
|
47
|
+
- id: nbqa-ruff
|
|
48
|
+
args: [--fix]
|
|
49
|
+
- id: nbqa-black
|
|
50
|
+
#- id: nbqa-mypy
|
|
51
|
+
|
|
52
|
+
# strip out jupyter notebooks
|
|
53
|
+
- repo: https://github.com/kynan/nbstripout
|
|
54
|
+
rev: 0.6.1
|
|
55
|
+
hooks:
|
|
56
|
+
- id: nbstripout
|
|
57
|
+
|
|
58
|
+
# yaml formatter
|
|
59
|
+
- repo: https://github.com/jumanjihouse/pre-commit-hook-yamlfmt
|
|
60
|
+
rev: 0.2.3
|
|
61
|
+
hooks:
|
|
62
|
+
- id: yamlfmt
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: careamics
|
|
3
|
+
Version: 0.1.0rc2
|
|
4
|
+
Summary: Toolbox for running N2V and friends.
|
|
5
|
+
Project-URL: homepage, https://careamics.github.io/
|
|
6
|
+
Project-URL: repository, https://github.com/CAREamics/careamics
|
|
7
|
+
Author-email: Igor Zubarev <igor.zubarev@fht.org>, Joran Deschamps <joran.deschamps@fht.org>, Vera Galinova <vera.galinova@fht.org>, Mehdi Seifi <mehdi.seifi@fht.org>
|
|
8
|
+
License: BSD-3-Clause
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: License :: OSI Approved :: BSD License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Typing :: Typed
|
|
19
|
+
Requires-Python: >=3.8
|
|
20
|
+
Requires-Dist: bioimageio-core
|
|
21
|
+
Requires-Dist: pydantic>=2.0
|
|
22
|
+
Requires-Dist: pyyaml
|
|
23
|
+
Requires-Dist: scikit-image
|
|
24
|
+
Requires-Dist: tifffile
|
|
25
|
+
Requires-Dist: torch
|
|
26
|
+
Requires-Dist: torchvision
|
|
27
|
+
Requires-Dist: zarr
|
|
28
|
+
Provides-Extra: all
|
|
29
|
+
Requires-Dist: careamics-portfolio; extra == 'all'
|
|
30
|
+
Requires-Dist: ipython; extra == 'all'
|
|
31
|
+
Requires-Dist: itkwidgets; extra == 'all'
|
|
32
|
+
Requires-Dist: jupyter; extra == 'all'
|
|
33
|
+
Requires-Dist: pre-commit; extra == 'all'
|
|
34
|
+
Requires-Dist: pytest; extra == 'all'
|
|
35
|
+
Requires-Dist: pytest-cov; extra == 'all'
|
|
36
|
+
Requires-Dist: torchsummary; extra == 'all'
|
|
37
|
+
Requires-Dist: wandb; extra == 'all'
|
|
38
|
+
Provides-Extra: dev
|
|
39
|
+
Requires-Dist: pre-commit; extra == 'dev'
|
|
40
|
+
Requires-Dist: pytest; extra == 'dev'
|
|
41
|
+
Requires-Dist: pytest-cov; extra == 'dev'
|
|
42
|
+
Provides-Extra: notebooks
|
|
43
|
+
Requires-Dist: careamics-portfolio; extra == 'notebooks'
|
|
44
|
+
Requires-Dist: ipython; extra == 'notebooks'
|
|
45
|
+
Requires-Dist: itkwidgets; extra == 'notebooks'
|
|
46
|
+
Requires-Dist: jupyter; extra == 'notebooks'
|
|
47
|
+
Requires-Dist: torchsummary; extra == 'notebooks'
|
|
48
|
+
Requires-Dist: wandb; extra == 'notebooks'
|
|
49
|
+
Provides-Extra: test
|
|
50
|
+
Requires-Dist: pytest; extra == 'test'
|
|
51
|
+
Requires-Dist: pytest-cov; extra == 'test'
|
|
52
|
+
Requires-Dist: wandb; extra == 'test'
|
|
53
|
+
Description-Content-Type: text/markdown
|
|
54
|
+
|
|
55
|
+
<p align="center">
|
|
56
|
+
<a href="https://careamics.github.io/">
|
|
57
|
+
<img src="https://raw.githubusercontent.com/CAREamics/.github/main/profile/images/banner_careamics.png">
|
|
58
|
+
</a>
|
|
59
|
+
</p>
|
|
60
|
+
|
|
61
|
+
# CAREamics
|
|
62
|
+
|
|
63
|
+
[](https://github.com/CAREamics/careamics/blob/main/LICENSE)
|
|
64
|
+
[](https://pypi.org/project/careamics)
|
|
65
|
+
[](https://python.org)
|
|
66
|
+
[](https://github.com/CAREamics/careamics/actions/workflows/ci.yml)
|
|
67
|
+
[](https://codecov.io/gh/CAREamics/careamics)
|
|
68
|
+
|
|
69
|
+
## Installation
|
|
70
|
+
|
|
71
|
+
``` bash
|
|
72
|
+
pip install careamics
|
|
73
|
+
```
|
|
74
|
+
For more details on the options please follow the installation [guide](https://careamics.github.io/installation/).
|
|
75
|
+
|
|
76
|
+
<!--
|
|
77
|
+
## Contributing
|
|
78
|
+
|
|
79
|
+
## Citing us
|
|
80
|
+
|
|
81
|
+
-->
|
|
@@ -1,18 +1,27 @@
|
|
|
1
1
|
<p align="center">
|
|
2
2
|
<a href="https://careamics.github.io/">
|
|
3
|
-
<img src="https://
|
|
3
|
+
<img src="https://raw.githubusercontent.com/CAREamics/.github/main/profile/images/banner_careamics.png">
|
|
4
4
|
</a>
|
|
5
5
|
</p>
|
|
6
6
|
|
|
7
|
+
# CAREamics
|
|
7
8
|
|
|
8
|
-
[](https://github.com/CAREamics/careamics/
|
|
9
|
+
[](https://github.com/CAREamics/careamics/blob/main/LICENSE)
|
|
9
10
|
[](https://pypi.org/project/careamics)
|
|
10
11
|
[](https://python.org)
|
|
11
12
|
[](https://github.com/CAREamics/careamics/actions/workflows/ci.yml)
|
|
12
13
|
[](https://codecov.io/gh/CAREamics/careamics)
|
|
13
14
|
|
|
15
|
+
## Installation
|
|
14
16
|
|
|
15
|
-
|
|
17
|
+
``` bash
|
|
18
|
+
pip install careamics
|
|
19
|
+
```
|
|
20
|
+
For more details on the options please follow the installation [guide](https://careamics.github.io/installation/).
|
|
16
21
|
|
|
17
|
-
|
|
18
|
-
|
|
22
|
+
<!--
|
|
23
|
+
## Contributing
|
|
24
|
+
|
|
25
|
+
## Citing us
|
|
26
|
+
|
|
27
|
+
-->
|