Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Datasets/cv4a kenya crop type competition #22

Merged
merged 13 commits into from
Jun 7, 2021
Merged
3 changes: 3 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
[flake8]
max-line-length = 88
extend-ignore =
# See https://github.com/PyCQA/pycodestyle/issues/373
E203,
exclude =
# Data
data/,
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ docs/_build/
target/

# Jupyter Notebook
*.ipynb
.ipynb_checkpoints

# IPython
Expand Down
328 changes: 328 additions & 0 deletions docs/CV4A Kenya Crop Type Dataset.ipynb

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ mypy
opencv-python
Pillow
pycocotools
radiant-mlhub>=0.2.1
rarfile
torch
torchvision
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ python_requires = >= 3.5
packages = find:

[options.extras_require]
cv4akenyacroptype =
radiant-mlhub>=0.2.1
landcoverai =
opencv-python
vhr10 =
Expand Down
1 change: 1 addition & 0 deletions spack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ spack:
- py-mypy
- py-pillow
- py-pycocotools
- "py-radiant-mlhub@0.2.1:"
- py-rarfile
- py-torch
- py-torchvision
Expand Down
4 changes: 2 additions & 2 deletions torchgeo/datasets/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .cv4a_kenya_crop_type import CV4AKenyaCropType
from .landcoverai import LandCoverAI
from .nwpu import VHR10


__all__ = ("LandCoverAI", "VHR10")
__all__ = ("CV4AKenyaCropType", "LandCoverAI", "VHR10")
Loading