Skip to content
This repository was archived by the owner on Aug 18, 2025. It is now read-only.

Commit 0da79ae

Browse files
authored
Fix excludes in find_packages (#145)
1 parent 62909d2 commit 0da79ae

3 files changed

Lines changed: 13 additions & 13 deletions

File tree

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -98,15 +98,15 @@ in another repository.
9898

9999
* **Baseline Models**
100100

101-
* [Zero-filled examples for saving images for leaderboard submission](fastmri_examples/zero_filled/)
102-
* [ESPIRiT—an eigenvalue approach to autocalibrating parallel MRI: where SENSE meets GRAPPA (M. Uecker et al., 2013)](fastmri_examples/cs/)
103-
* [U-Net: Convolutional networks for biomedical image segmentation (O. Ronneberger et al., 2015)](fastmri_examples/unet/)
101+
* [Zero-filled examples for saving images for leaderboard submission](https://github.com/facebookresearch/fastMRI/tree/master/fastmri_examples/zero_filled/)
102+
* [ESPIRiT—an eigenvalue approach to autocalibrating parallel MRI: where SENSE meets GRAPPA (M. Uecker et al., 2013)](https://github.com/facebookresearch/fastMRI/tree/master/fastmri_examples/cs/)
103+
* [U-Net: Convolutional networks for biomedical image segmentation (O. Ronneberger et al., 2015)](https://github.com/facebookresearch/fastMRI/tree/master/fastmri_examples/unet/)
104104

105105
* **Sampling, Reconstruction and Artifact Correction**
106106

107-
* [Offset Sampling Improves Deep Learning based Accelerated MRI Reconstructions by Exploiting Symmetry (A. Defazio, 2019)](banding_removal/fastmri/common/subsample.py#L126-L198)
107+
* [Offset Sampling Improves Deep Learning based Accelerated MRI Reconstructions by Exploiting Symmetry (A. Defazio, 2019)](https://github.com/facebookresearch/fastMRI/tree/master/banding_removal/fastmri/common/subsample.py#L126-L198)
108108
* [End-to-End Variational Networks for Accelerated MRI Reconstruction ({A. Sriram*, J. Zbontar*} et al., 2020)](fastmri_examples/varnet/)
109-
* [MRI Banding Removal via Adversarial Training (A. Defazio, et al., 2020)](banding_removal)
109+
* [MRI Banding Removal via Adversarial Training (A. Defazio, et al., 2020)](https://github.com/facebookresearch/fastMRI/tree/master/banding_removal)
110110

111111
* **Active Acquisition** (external repository)
112112
* [Reducing uncertainty in undersampled MRI reconstruction with active acquisition (Z. Zhang et al., 2019)](https://github.com/facebookresearch/active-mri-acquisition/tree/master/activemri/experimental/cvpr19_models)
@@ -116,17 +116,17 @@ in another repository.
116116

117117
Run `pytest tests`. By default integration tests that use the fastMRI data are
118118
skipped. If you would like to run these tests, set `SKIP_INTEGRATIONS` to
119-
`False` in the [conftest](tests/conftest.py).
119+
`False` in the [conftest](https://github.com/facebookresearch/fastMRI/tree/master/tests/conftest.py).
120120

121121
## Training a model
122122

123-
The [data README](fastmri/data/README.md) has a bare-bones example for how to
123+
The [data README](https://github.com/facebookresearch/fastMRI/tree/master/fastmri/data/README.md) has a bare-bones example for how to
124124
load data and incorporate data transforms. This
125-
[jupyter notebook](fastMRI_tutorial.ipynb) contains a simple tutorial
125+
[jupyter notebook](https://github.com/facebookresearch/fastMRI/tree/master/fastMRI_tutorial.ipynb) contains a simple tutorial
126126
explaining how to get started working with the data.
127127

128128
Please look at
129-
[this U-Net demo script](fastmri_examples/unet/train_unet_demo.py) for an
129+
[this U-Net demo script](https://github.com/facebookresearch/fastMRI/tree/master/fastmri_examples/unet/train_unet_demo.py) for an
130130
example of how to train a model using the PyTorch Lightning framework.
131131

132132
## Submitting to the Leaderboard
@@ -142,7 +142,7 @@ account before submitting.
142142

143143
## License
144144

145-
fastMRI is MIT licensed, as found in the [LICENSE file](LICENSE.md).
145+
fastMRI is MIT licensed, as found in the [LICENSE file](https://github.com/facebookresearch/fastMRI/tree/master/LICENSE.md).
146146

147147
## Cite
148148

@@ -164,7 +164,7 @@ paper:
164164

165165
The following lists titles of papers from the fastMRI project. The
166166
corresponding abstracts, as well as links to preprints and code can be found
167-
[here](LIST_OF_PAPERS.md).
167+
[here](https://github.com/facebookresearch/fastMRI/tree/master/LIST_OF_PAPERS.md).
168168

169169
1. Zbontar, J.\*, Knoll, F.\*, Sriram, A.\*, Murrell, T., Huang, Z., Muckley, M. J., ... & Lui, Y. W. (2018). [fastMRI: An Open Dataset and Benchmarks for Accelerated MRI](https://arxiv.org/abs/1811.08839). *arXiv preprint arXiv:1811.08839*.
170170
2. Zhang, Z., Romero, A., Muckley, M. J., Vincent, P., Yang, L., & Drozdzal, M. (2019). [Reducing uncertainty in undersampled MRI reconstruction with active acquisition](https://openaccess.thecvf.com/content_CVPR_2019/html/Zhang_Reducing_Uncertainty_in_Undersampled_MRI_Reconstruction_With_Active_Acquisition_CVPR_2019_paper.html). In *Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition*, pages 2049-2058.

fastmri/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
LICENSE file in the root directory of this source tree.
66
"""
77

8-
__version__ = "0.1.0.post210716"
8+
__version__ = "0.1.1"
99
__author__ = "Facebook/NYU fastMRI Team"
1010
__author_email__ = "fastmri@fb.com"
1111
__license__ = "MIT"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
packages=find_packages(
5151
exclude=[
5252
"tests",
53-
"fastmri_examples",
53+
"fastmri_examples*",
5454
"banding_removal",
5555
]
5656
),

0 commit comments

Comments
 (0)