-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merge changes in the test branch (#18)
- Loading branch information
1 parent
f79e9d5
commit fbeadc8
Showing
9 changed files
with
110 additions
and
266 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,3 @@ | ||
[flake8] | ||
max-line-length = 100 | ||
ignore = E203, E501, W503, E722, W605 |
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 |
---|---|---|
|
@@ -5,3 +5,6 @@ venv | |
dataset_tools | ||
supervisely | ||
debug | ||
__pycache__ | ||
data/ | ||
.DS_Store |
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 |
---|---|---|
@@ -1,30 +1,31 @@ | ||
{ | ||
"name": "Export to Supervisely format", | ||
"type": "app", | ||
"categories": [ | ||
"images", | ||
"export" | ||
"name": "Export to Supervisely format", | ||
"type": "app", | ||
"version": "2.0.0", | ||
"categories": [ | ||
"images", | ||
"export" | ||
], | ||
"description": "images and JSON annotations", | ||
"docker_image": "supervisely/import-export:6.73.60", | ||
"instance_version": "6.9.4", | ||
"main_script": "src/main.py", | ||
"modal_template": "src/modal.html", | ||
"modal_template_state": { | ||
"download": "all", | ||
"fixExtension": false | ||
}, | ||
"task_location": "workspace_tasks", | ||
"isolate": true, | ||
"headless": true, | ||
"icon": "https://i.imgur.com/1hqGMyg.png", | ||
"icon_background": "#FFFFFF", | ||
"context_menu": { | ||
"target": [ | ||
"images_project", | ||
"images_dataset" | ||
], | ||
"description": "images and JSON annotations", | ||
"docker_image": "supervisely/import-export:6.72.205", | ||
"instance_version": "6.8.48", | ||
"main_script": "src/main.py", | ||
"modal_template": "src/modal.html", | ||
"modal_template_state": { | ||
"download": "all", | ||
"fixExtension": false | ||
}, | ||
"task_location": "workspace_tasks", | ||
"isolate": true, | ||
"headless": true, | ||
"icon": "https://i.imgur.com/1hqGMyg.png", | ||
"icon_background": "#FFFFFF", | ||
"context_menu": { | ||
"target": [ | ||
"images_project", | ||
"images_dataset" | ||
], | ||
"context_root": "Download as" | ||
}, | ||
"poster": "https://user-images.githubusercontent.com/106374579/186665737-ec3da9cc-193f-43ee-85db-a6f802b2dfe4.png" | ||
} | ||
"context_root": "Download as" | ||
}, | ||
"poster": "https://user-images.githubusercontent.com/106374579/186665737-ec3da9cc-193f-43ee-85db-a6f802b2dfe4.png" | ||
} |
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,22 @@ | ||
#!/bin/bash | ||
|
||
# learn more in documentation | ||
# Official python docs: https://docs.python.org/3/library/venv.html | ||
# Superviely developer portal: https://developer.supervise.ly/getting-started/installation#venv | ||
|
||
if [ -d ".venv" ]; then | ||
echo "VENV already exists, will be removed" | ||
rm -rf .venv | ||
fi | ||
|
||
echo "VENV will be created" && \ | ||
python3 -m venv .venv && \ | ||
source .venv/bin/activate && \ | ||
|
||
echo "Install requirements..." && \ | ||
pip3 install -r dev_requirements.txt && \ | ||
echo "Requirements have been successfully installed" && \ | ||
echo "Testing imports, please wait a minute ..." && \ | ||
python3 -c "import supervisely as sly" && \ | ||
echo "Success!" && \ | ||
deactivate |
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 |
---|---|---|
@@ -1 +1 @@ | ||
supervisely==6.72.206 | ||
supervisely==6.73.60 |
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 |
---|---|---|
@@ -1,13 +1,6 @@ | ||
PYTHONUNBUFFERED=1 | ||
TASK_ID=50046 | ||
|
||
context.teamId=537 | ||
context.workspaceId=1029 | ||
modal.state.slyProjectId=32318 | ||
TEAM_ID = 448 | ||
WORKSPACE_ID = 690 | ||
PROJECT_ID = 35637 | ||
modal.state.download=all | ||
modal.state.fixExtension=true | ||
|
||
DEBUG_APP_DIR=debug/app_debug_data | ||
DEBUG_CACHE_DIR=debug/app_debug_cache | ||
|
||
LOG_LEVEL="debug" | ||
# DATASET_ID = |
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.