-
Notifications
You must be signed in to change notification settings - Fork 285
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #320 from lightly-ai/develop
- lightly-download has the flag exclude_parent_tag - lightly-upload and lightly-magic support new_dataset_name to directly create a new dataset - Bugfixes - better documentation
- Loading branch information
Showing
45 changed files
with
1,293 additions
and
114 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
closes #issue_number | ||
|
||
## Description | ||
- [ ] My change is breaking | ||
Please_describe_what_you_changed_and_why___You_do_not_need_to_repeat_stuff_from_the_issue | ||
|
||
## Tests | ||
- [ ] My change is covered by existing tests. | ||
- [ ] My change needs new tests. | ||
- [ ] I have added/adapted the tests accordingly. | ||
- [ ] I have manually tested the change. if_yes_describe_how | ||
|
||
## Documentation | ||
- [ ] I have added docstrings to all public functions/methods. | ||
- [ ] My change requires a change to the documentation ( `.rst` files). | ||
- [ ] I have updated the documentation accordingly. | ||
- [ ] The autodocs update the documentation accordingly. | ||
|
||
## Implications / comments / further issues | ||
- #e_g_link_to_issue_to_cover_breaking_changes | ||
|
31 changes: 31 additions & 0 deletions
31
.github/PULL_REQUEST_TEMPLATE/PR_template_checklist_full.md
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,31 @@ | ||
closes #issue_number | ||
|
||
## Description | ||
- [ ] My change is breaking | ||
Please_describe_what_you_changed_and_why___You_do_not_need_to_repeat_stuff_from_the_issue | ||
|
||
## Tests | ||
- [ ] My change is covered by existing tests | ||
- [ ] My change needs new tests | ||
- [ ] I have added/adapted tests accordingly. | ||
- [ ] I have manually tested the change. | ||
|
||
If applicable, describe the manual test procedure, e.g: | ||
```bash | ||
pip uninstall lightly | ||
export BRANCH_NAME="branch_name" | ||
pip install "git+https://github.com/lightly-ai/lightly.git@$BRANCH_NAME" | ||
lightly-cli_do_something_command | ||
``` | ||
|
||
## Documentation | ||
- [ ] I have added docstrings to all changed/added public functions/methods. | ||
- [ ] My change requires a change to the documentation ( `.rst` files). | ||
- [ ] I have updated the documentation accordingly. | ||
- [ ] The autodocs update the documentation accordingly.` | ||
|
||
## Improvements put into another issue: | ||
- #issue_number | ||
|
||
## Issues covering the breaking change: | ||
- #link_to_issue_in_other_repo to adapt the other side of the breaking change |
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,12 @@ | ||
closes #issue_number | ||
|
||
## Description | ||
Please_describe_what_you_changed_and_why___You_do_not_need_to_repeat_stuff_from_the_issue | ||
|
||
## Documentation | ||
- [ ] I have updated the documentation. | ||
- [ ] I need help on it. | ||
|
||
## Tests | ||
- [ ] I have updated the tests. | ||
- [ ] I need help on it. |
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
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 |
---|---|---|
|
@@ -74,7 +74,7 @@ | |
# All Rights Reserved | ||
|
||
__name__ = 'lightly' | ||
__version__ = '1.1.5' | ||
__version__ = '1.1.6' | ||
|
||
|
||
try: | ||
|
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
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,7 @@ | ||
""" Collection of Utils for Active Learning """ | ||
|
||
# Copyright (c) 2020. Lightly AG and its affiliates. | ||
# All Rights Reserved | ||
|
||
from lightly.active_learning.utils.bounding_box import BoundingBox | ||
from lightly.active_learning.utils.object_detection_output import ObjectDetectionOutput |
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
Oops, something went wrong.