forked from HumanSignal/label-studio
-
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.
* Update LSF (OCR, performance) * Update DM * Expand tasks size. Remove tag. Move moto to requirements-test.txt (HumanSignal#1020) * Expand tasks size * Move moto to requirements-test.txt * Relax django-ranged-fileresponse requirements * Create annotation_ids.md (HumanSignal#1078) Adding result ID info to labeling and export docs * Update requirements-test.txt Co-authored-by: smoreface <[email protected]> * Changing requirement for label-studio-converter * Fixing commit for label-studio-converter * Changing requirements for label-studio-converter last commit in master * Fix deployment & OCR config * Update lsf * Fix/move storage list as a settings (HumanSignal#1099) * Move storage list as a settings function * Add missed module Co-authored-by: nik <[email protected]> * Add form layout post processing * Update editor * Error tracking (HumanSignal#1107) * Add Sentry * Sentry setup * Add versions to base.html * Integrate Sentry with React Router * Extended sentry tracking Co-authored-by: makseq-ubnt <[email protected]> * Fix view auth check (HumanSignal#1075) * Increase test coverage for common.py * Change version * Put correct annotator username into drafts * Fix space before username in draft * Remove json block from settings template * Fix common columns reset after task deletion * Fix postgres tests * Remove excess test * Update frontend * Fix get-build error; switch lsf to master * Update frontend * Update converter version. Decrease sentry rate * Replace template image * Update frontend * Update frontend * Update release version * Update template image * Change version to 1.1.0 Co-authored-by: Nikita Skryabin <[email protected]> Co-authored-by: nik <[email protected]> Co-authored-by: Max Tkachenko <[email protected]> Co-authored-by: smoreface <[email protected]> Co-authored-by: KonstantinKorotaev <[email protected]> Co-authored-by: Koshevarov Sergey <[email protected]> Co-authored-by: Nick Skriabin <[email protected]> Co-authored-by: Sergei Ivashchenko <[email protected]> Co-authored-by: hlomzik <[email protected]>
- Loading branch information
1 parent
fd235f2
commit e3431c8
Showing
37 changed files
with
186 additions
and
271 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
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 |
---|---|---|
|
@@ -6,4 +6,4 @@ requests-mock==1.5.2 | |
pyyaml>=5.3.1 | ||
moto==1.3.16.dev122 | ||
tavern==1.14.0 | ||
fakeredis==1.5.0 | ||
fakeredis==1.5.0 |
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
Binary file modified
BIN
-51.1 KB
(39%)
label_studio/core/static/templates/optical-character-recognition.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 was deleted.
Oops, something went wrong.
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,23 +1,16 @@ | ||
"""This file and its contents are licensed under the Apache License 2.0. Please see the included NOTICE for copyright information and LICENSE for a copy of the license. | ||
""" | ||
from django.shortcuts import redirect, render, reverse | ||
from rules.contrib.views import permission_required, objectgetter | ||
from django.shortcuts import render | ||
from django.contrib.auth.decorators import login_required | ||
|
||
from core.permissions import (IsBusiness, get_object_with_permissions, view_with_auth) | ||
from core.utils.common import get_object_with_check_and_log, find_editor_files, get_organization_from_request | ||
from core.utils.common import find_editor_files | ||
from core.version import get_short_version | ||
from organizations.models import Organization | ||
from projects.models import Project | ||
|
||
|
||
@view_with_auth(['GET'], (IsBusiness,)) | ||
# @permission_required('tasks.delete_task', fn=objectgetter(Project, 'pk'), raise_exception=True) | ||
@login_required | ||
def task_page(request, pk): | ||
project = get_object_with_check_and_log(request, Project, pk=pk) | ||
|
||
response = { | ||
'project': project, | ||
'version': get_short_version() | ||
} | ||
response.update(find_editor_files()) | ||
return render(request, 'data_manager/data.html', response) | ||
return render(request, 'base.html', response) |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,6 +1,6 @@ | ||
{ | ||
"message": "Support multiple images data", | ||
"commit": "f182e3fb1bcb8de28dfca994c4f345a87e4d54b8", | ||
"message": "Don't close QuickView by Enter", | ||
"commit": "d12a691d1e941768c3067ccb15abe5498f8a453b", | ||
"branch": "master", | ||
"date": "2021-06-29T17:13:19Z" | ||
"date": "2021-06-30T16:06:22Z" | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,6 +1,6 @@ | ||
{ | ||
"message": "OCR improvements (#214)\n\n* Add sidebar displaying mode for per region textareas\r\n\r\n* Fix label tree groups\r\n\r\n* Fix tests\r\n\r\n* Add tests and fixes\r\n\r\n* Update styles\r\n\r\n* Add rotating of label on rectangle\r\n\r\n* Update entities header\r\n\r\n* Fix tests\r\n\r\n* Add eslint rules for codeceptjs\r\n\r\n* Add constraints to applying labels\r\n\r\n- preventing of applying region labels to semantically incompatible regions\r\n- test\r\n\r\n* Add textarea focusing by dblclick and fixs\r\n\r\n* Hide duplicate text\r\n\r\n* Clean\r\n\r\n* Add autofocus textarea by selectAfterCreate setting\r\n\r\n* Fix text selection in region item\r\n\r\n* Fix autofocus on textarea for different shapes\r\n\r\n* Fix label name computing\r\n\r\n* Add submitting text when collapsing region item\r\n\r\n* Fix tests\r\n\r\n* Fix tests\r\n\r\n* Fix focusing\r\n\r\n* Add focus by enter instead of autofocus\r\n\r\n* Add scrolling selected region item into view\r\n\r\n* Fix tests\r\n\r\n* Fix removing area under cursor\r\n\r\n* Fix brush size at slider\r\n\r\n* Add deserialization test on OCR mode\r\n\r\n* Fix sidebar textarea styles\r\n\r\n* Fix image rotating in two columns template\r\n\r\n* Fix tests\r\n\r\nCo-authored-by: Koshevarov Sergey <[email protected]>", | ||
"commit": "1cef63d2a8fd1d345cd21657fced5242ff521994", | ||
"message": "Improve Labels styles", | ||
"commit": "5a34b62e57653484bb5d9924cfd821a7b81de996", | ||
"branch": "master", | ||
"date": "2021-06-29T20:13:02Z" | ||
"date": "2021-06-30T20:10:42Z" | ||
} |
Oops, something went wrong.