31 Commits (c83d17007b751fcfb9460bd5204cfd63ae3aa2b0)

Author SHA1 Message Date
AetherBreeze c83d17007b
Add several flags to task_create CLI (#4119)
* Add serveral flags to CLI & generalize CLI code

definition.py:
	- Add use_zip_chunks, start_frame, stop_frame, and chunk_size
	  as CLI flags
	- Rename --bug to --bug_tracker to be consistent with website
	  and API
	- No longer include optional kwargs in all requests
core.py:
	- Add a single loop to handle all kwargs for extensibility
	- Lump optional task_create args into kwargs for brevity

* Add --bug as alias for --bug_tracker

- Add back old --bug flag for backwards compatability

* Update licence header

Update licence header for core.py

* Remove redundant parameter assignment

- Remove hardcoded `image_quality` default value, as this is already
  handled by the argparse default value.

* CHANGELOG entry for new CLI flags

* CLI linting fixes

- Several linting fixes for CLI

* Fix CLI test

- Re-add default image_quality in case task_create is called manually

* Resolve changelog merge conflict

* Update CHANGELOG.md

Co-authored-by: Andrey Zhavoronkov <andrey.zhavoronkov@intel.com>
4 years ago
Andrey Zhavoronkov 32d9fb09be
Project backups (#3852) 4 years ago
Maria Khrustaleva 68fbcdec43
Added sorting methods (#3937) 4 years ago
Jan Hünnemeyer d91ba56622
Fix incorrect comparison (#3674)
* Fix incorrect comparison
* Add changelog entry
4 years ago
Chris 589dc91d2d
Add arguments to cli to allow disabling of copying image data from share mount (#3544) 5 years ago
Dmitry Kalinin 472d53596e
Fixed task creating CLI parameter (#3519)
* Fixed CLI parameter

* Adjusted docs

* Added CHANGELOG
5 years ago
Andrey Zhavoronkov 72fdef4335
Az/import export tasks (#3056)
* initial version of task export/import feature

* fixed tests

* CLI

* fix comments

* updated license headers

* fix eslint issues

* fix comments

* fixed comments

* reverted changes in *.md files

* fixed comments

* fix pylint issues

* fix import for share case

* improved unit tests

* updated changelog

* fixed Maria's comments

* fixed comments

* Fixed position of create new task button

* Fixed span position

* fixed comments

Co-authored-by: Nikita Manovich <nikita.manovich@intel.com>
Co-authored-by: Boris Sekachev <boris.sekachev@intel.com>
5 years ago
Diego Cesar 3f8bc9db3d
fix json output of CLI command ls (#3298)
Co-authored-by: Diego Cesar <dcesar@krakenrobotik.de>
5 years ago
André Aquilina 140489dccc
Fix cli create git fail (#3267)
* Fix issue of infinite loop due to incorrect status comparison.

* Update CHANGELOG.md

* Fix PEP8.

* Update failure case to break from infinite loop.

* Update utils/cli/core/core.py

Co-authored-by: Boris Sekachev <boris.sekachev@intel.com>

* Add check for unknown failure.

* Fix logging in failure case.

* Update CHANGELOG.md

Co-authored-by: Boris Sekachev <boris.sekachev@intel.com>
Co-authored-by: André Aquilina <andre.aquilina@dysismedical.com>
5 years ago
qztseng 11d967d208
add cli kwargs for image_quality and frame_step when creating task (#3176)
* add cli kwargs for image_quality and frame_step when creating task

* add **kwargs to the tasks_data function call

* add the corresponding options into argument parser

* Update core.py

update license header

* update license header

* fix definition.py help text
5 years ago
Timur Osmanov 9615436ecc
Website with documentation (#3039) 5 years ago
Adam Harvey d9f1798684
add --project_id argument for create task (#3090) 5 years ago
André Aquilina 61e112e2f2
Add dataset URI to Task from CLI (#2983)
* Add option to include git repository for annotation synchronisation.

* Add arge parser for git dataset repository in task create.

* Update changelog.

* Add API for git.

* Add verification procedure for dataset repository creation.

Co-authored-by: André Aquilina <andre.aquilina@dysismedical.com>
5 years ago
Ali Jahani f8ce8c13c0
CLI- Task list improvement (#2863)
* cli - task list now returns list of current tasks

* updated changelog

* fixed formatting
5 years ago
Vitaliy Nishukov 7512fd6883
Reformatted (#2349) 5 years ago
Andrey Zhavoronkov a222741f6b
Rename git app (#2243)
* renamed application git -> git_manager

* removed _GitImportFix class

* fixed cli tests

* git_manager -> dataset_repo

* updated changelog

* fixed dataset manager tests
5 years ago
Maxim Zhiltsov f138859c1a
Add auto inference of host scheme in CLI (#2240)
* Add auto inference of host scheme in CLI

* update changelog
5 years ago
Young 3f6d2e9e4f
add overlap & segment_size flag for python cli task create (#1950)
Thanks you so much
6 years ago
Liron Ilouz 7679434bc2
add https flag to python cli (#1942)
* add https flag to python cli

* update changelog

Co-authored-by: Liron Ilouz <liron@tapwithus.com>
6 years ago
Eric Grinstein 3fee4cfcab
Functionality to upload annotations on task creation (#1735)
* Upload annotations on task creation

* Bulk upload v1

* Not working

* Annotation upon task creation finished

* Functionality to upload annotations on task creation

* Functionality to upload annotations on task creation

* Functionality to upload annotations on task creation

* Functionality to upload annotations on task creation

* Fix trailing whitespace

* Use status request for checking task completion

* fixed default format name

Co-authored-by: Eric Grinstein <v-ergri@microsoft.com>
Co-authored-by: Andrey Zhavoronkov <andrey.zhavoronkov@intel.com>
Co-authored-by: Nikita Manovich <40690625+nmanovic@users.noreply.github.com>
6 years ago
Andrey Zhavoronkov 3caae98b5b
fixed linter issues and store credentials cookie in the session object (#1526)
* fixed issues

* fixed issues and stored credentials cookies inside the session

* fixed tests
6 years ago
zhiltsov-max 5ab549956f
Merge annotations and dataset_manager apps (#1352) 6 years ago
Andrey Zhavoronkov e7808cfb03
Data streaming using chunks (#1007)
Huge feature (200+ commits from different developers). It completely changes layout of data (please expect very long DB migration process if you have a lot of tasks). The primary idea is to send data as zip chunks (e.g. 36 images in one chunk) or encoded video chunks and decode them on the client side. It helps to solve the problem with latency  when you try to view a separate frame in the UI quickly (play mode).
Another important feature of the patch is to provide access to the original images. Thus for annotations the client uses compressed chunks but if you want to export a dataset Datumaro will use original chunks (but video will be decoded with original quality and encoded with maximum/optimal quality in any case).
6 years ago
zhiltsov-max 93b3c091f5 [Datumaro] CLI updates + better documentation (#1057) 6 years ago
Seungwon Jeong ab6303f033 Add test code for cli upload function (#986) 6 years ago
Seungwon Jeong a716355cdc Add upload annotation function to cli (#958)
* add upload annotation function to cli

* Update core.py

Removing whitespace
6 years ago
dependabot[bot] 111626d1c8 Bump pillow from 5.3.0 to 6.2.0 in /utils/cli (#807)
Bumps [pillow](https://github.com/python-pillow/Pillow) from 5.3.0 to 6.2.0.
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/master/CHANGES.rst)
- [Commits](https://github.com/python-pillow/Pillow/compare/5.3.0...6.2.0)

Signed-off-by: dependabot[bot] <support@github.com>
6 years ago
Boris Sekachev 695fc37924 User interface with react and antd (#755)
* Login page, router
* Registration
* Tasks view
6 years ago
telenachos a18e83bafe Updating string format for case missed in PR #746. (#757) 6 years ago
Nikita Manovich 73bab7bea6
Slightly enhance command line interface feature (#746)
* Slightly enhance command line interface feature.
Added README.md, run tests using travis, run CLI tests from VS code.
* Removed formatted string due to a limitation on our python version inside the container.
* Add information about command line interface to the main page.
6 years ago
telenachos db19cbfe4b New command line tool for working with tasks (#732)
* Adding new command line tool for performing common task related
operations (create, list, delete, etc.)
* Replaced @exception decorator with try/except in main()
* Replaced optional --name with positional name and removed default
* Added license text to files
* Added django units to cover future API changes
* Refactored into submodules to better support tests
6 years ago