├── .env ├── .gitignore ├── LICENSE.md ├── README.md ├── __init__.py ├── al ├── metrics.py ├── models.py ├── samplers │ ├── abstract_sampler.py │ ├── combined_sampler.py │ ├── constants.py │ ├── deep.py │ ├── density.py │ ├── random_sampler.py │ └── uncertainty.py ├── sampling_methods │ ├── __init__.py │ ├── constants.py │ ├── entropy.py │ ├── informative_diverse.py │ ├── margin_AL.py │ ├── sampling_def.py │ └── uniform_sampling.py └── stopping_criteria.py ├── annotation_base ├── __init__.py ├── anno_task.py ├── db_utils.py └── doc_distribution.py ├── app ├── __init__.py ├── celery.py ├── context_processor.py ├── forms.py ├── pagination.py ├── settings.py ├── urls.py ├── views.py └── wsgi.py ├── deployment ├── alanno.nginx.conf ├── django.dev.dockerfile ├── django.prod.dockerfile ├── nginx.prod.dockerfile ├── nvidia.dev.dockerfile ├── webpack.dev.dockerfile └── webpack.prod.dockerfile ├── docker-compose.local.yml ├── docker-compose.prod.yml ├── manage.py ├── requirements.txt ├── server ├── __init__.py ├── admin.py ├── api.py ├── apps.py ├── custom_fields.py ├── forms.py ├── management │ └── commands │ │ ├── celery.py │ │ ├── initadmin.py │ │ ├── initgroups.py │ │ └── initoptions.py ├── managers.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20211206_1655.py │ ├── 0003_auto_20211225_1721.py │ ├── 0004_auto_20220103_0941.py │ ├── 0005_project_member.py │ ├── 0006_rename_member_project_members.py │ ├── 0007_userlog.py │ ├── 0008_alter_userlog_type.py │ ├── 0009_alter_userlog_metadata.py │ ├── 0010_alter_project_al_method.py │ ├── 0011_auto_20220318_1612.py │ ├── 0012_document_indexing.py │ ├── 0013_auto_20220323_1300.py │ ├── 0014_auto_20220330_1458.py │ ├── 0015_auto_20220504_1948.py │ ├── 0016_project_is_deleted.py │ ├── 0017_alter_project_name.py │ ├── 0018_useroptions.py │ └── __init__.py ├── models │ ├── __init__.py │ ├── annotation.py │ ├── classification_document.py │ ├── document.py │ ├── document_annotation.py │ ├── export_data.py │ ├── label.py │ ├── project.py │ ├── project_statistics.py │ ├── round.py │ ├── sequence_annotation.py │ ├── sequence_document.py │ ├── user_log.py │ └── user_options.py ├── old_tests │ ├── test_annotation_api.py │ ├── test_doc_api.py │ ├── test_label_api.py │ ├── test_models.py │ ├── test_projects_api.py │ └── test_views.py ├── package.json ├── parser.py ├── permissions.py ├── serializers.py ├── services │ ├── export_dataset.py │ ├── import_dataset.py │ └── statistics.py ├── singletons.py ├── static │ ├── bundle │ │ ├── control.js │ │ ├── dataset.js │ │ ├── document_classification.js │ │ ├── gl_classification.js │ │ ├── gl_seq_lab.js │ │ ├── hier_classification.js │ │ ├── instructions.js │ │ ├── kex.js │ │ ├── label.js │ │ ├── projects.js │ │ ├── seq2seq.js │ │ ├── sequence_labeling.js │ │ ├── settings.js │ │ ├── stats.js │ │ ├── test.js │ │ └── upload.js │ ├── css │ │ ├── admin.css │ │ ├── annotation.css │ │ ├── base.css │ │ ├── bootstrap.css │ │ ├── bulma.min.css │ │ ├── cards.css │ │ ├── font-awesome │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ └── font-awesome.min.css │ │ │ └── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ ├── fonts.css │ │ ├── forum.css │ │ ├── main.css │ │ ├── micons │ │ │ ├── fonts │ │ │ │ ├── icomoon.eot │ │ │ │ ├── icomoon.svg │ │ │ │ ├── icomoon.ttf │ │ │ │ └── icomoon.woff │ │ │ └── micons.css │ │ ├── org-tree.css │ │ ├── select.css │ │ ├── sidebar.css │ │ ├── vendor.css │ │ ├── vue-multiselect.min.css │ │ └── vue-slider.css │ ├── fonts │ │ ├── lora │ │ │ ├── lora-bold-webfont.ttf │ │ │ ├── lora-bold-webfont.woff │ │ │ ├── lora-bold-webfont.woff2 │ │ │ ├── lora-bolditalic-webfont.woff │ │ │ ├── lora-bolditalic-webfont.woff2 │ │ │ ├── lora-italic-webfont.ttf │ │ │ ├── lora-italic-webfont.woff │ │ │ ├── lora-italic-webfont.woff2 │ │ │ ├── lora-regular-webfont.woff │ │ │ └── lora-regular-webfont.woff2 │ │ └── montserrat │ │ │ ├── montserrat-black-webfont.woff │ │ │ ├── montserrat-black-webfont.woff2 │ │ │ ├── montserrat-bold-webfont.woff │ │ │ ├── montserrat-bold-webfont.woff2 │ │ │ ├── montserrat-extrabold-webfont.woff │ │ │ ├── montserrat-extrabold-webfont.woff2 │ │ │ ├── montserrat-extralight-webfont.woff │ │ │ ├── montserrat-extralight-webfont.woff2 │ │ │ ├── montserrat-light-webfont.woff │ │ │ ├── montserrat-light-webfont.woff2 │ │ │ ├── montserrat-medium-webfont.woff │ │ │ ├── montserrat-medium-webfont.woff2 │ │ │ ├── montserrat-regular-webfont.woff │ │ │ ├── montserrat-regular-webfont.woff2 │ │ │ ├── montserrat-semibold-webfont.woff │ │ │ ├── montserrat-semibold-webfont.woff2 │ │ │ ├── montserrat-thin-webfont.woff │ │ │ └── montserrat-thin-webfont.woff2 │ ├── images │ │ ├── avatars │ │ │ ├── user-01.jpg │ │ │ ├── user-02.jpg │ │ │ ├── user-03.jpg │ │ │ ├── user-04.jpg │ │ │ └── user-05.jpg │ │ ├── clients │ │ │ ├── django.png │ │ │ ├── docker.png │ │ │ ├── pyro.png │ │ │ ├── python.png │ │ │ ├── pytorch.png │ │ │ ├── sklearn.png │ │ │ └── vue.png │ │ ├── contact-bg.jpg │ │ ├── context.jpg │ │ ├── delete.png │ │ ├── email-icon.png │ │ ├── favicon.ico │ │ ├── form-bg.jpg │ │ ├── hero-bg.jpg │ │ ├── home-bg.jpg │ │ ├── left-arrow.png │ │ ├── lock.png │ │ ├── logo.svg │ │ ├── mountain.jpg │ │ ├── photoswipe │ │ │ ├── default-skin.png │ │ │ ├── default-skin.svg │ │ │ └── preloader.gif │ │ ├── projects │ │ │ ├── img-0.jpg │ │ │ ├── img-1.jpg │ │ │ ├── img-2.jpg │ │ │ ├── img-3.jpg │ │ │ ├── img-4.jpg │ │ │ ├── img-5.jpg │ │ │ ├── img-6.jpg │ │ │ ├── img-7.jpg │ │ │ ├── img-8.jpg │ │ │ └── img-9.jpg │ │ ├── register-bg.jpg │ │ ├── right-arrow.png │ │ ├── sample-image.jpg │ │ ├── tl-logo.png │ │ ├── wheel-1000.jpg │ │ ├── wheel-2000.jpg │ │ └── wheel-500.jpg │ └── js │ │ ├── admin │ │ ├── control.js │ │ ├── dataset.js │ │ ├── instructions.js │ │ ├── label.js │ │ ├── settings.js │ │ ├── stats.js │ │ └── upload.js │ │ ├── annotation │ │ ├── annotations.js │ │ ├── document_classification.js │ │ ├── hier_classification.js │ │ ├── seq2seq.js │ │ └── sequence_labeling.js │ │ ├── gl_anno │ │ ├── gl_anno.js │ │ ├── gl_classification.js │ │ └── gl_seq_lab.js │ │ ├── http.js │ │ ├── jquery.min.js │ │ ├── main.js │ │ ├── modernizr.js │ │ ├── pace.min.js │ │ ├── plugins.js │ │ ├── projects.js │ │ ├── test.js │ │ └── utils │ │ ├── jquery.min.js │ │ ├── marked.js │ │ ├── modernizr.js │ │ ├── pace.min.js │ │ └── plugins.js ├── tasks.py ├── templates │ ├── admin │ │ ├── admin_base.html │ │ ├── control.html │ │ ├── dataset.html │ │ ├── export.html │ │ ├── import.html │ │ ├── instructions.html │ │ ├── label.html │ │ ├── settings.html │ │ └── stats.html │ ├── annotation │ │ ├── annotation_base.html │ │ ├── document_classification.html │ │ ├── hier_classification.html │ │ ├── seq2seq.html │ │ └── sequence_labeling.html │ ├── general │ │ ├── base.html │ │ ├── home.html │ │ ├── login.html │ │ ├── projects.html │ │ ├── register.html │ │ └── test.html │ └── gl_anno │ │ ├── gl_anno_base.html │ │ ├── gl_classification.html │ │ └── gl_seq_lab.html ├── templatetags │ ├── __init__.py │ └── templatetags.py ├── tests │ ├── __init__.py │ ├── test_al.py │ ├── test_annotation.py │ ├── test_control.py │ ├── test_data.py │ ├── test_export.py │ ├── test_import.py │ ├── test_labels.py │ ├── test_project.py │ ├── test_settings.py │ ├── test_stats.py │ └── utils.py ├── urls.py ├── views.py └── webpack.config.js └── text ├── cro_stemmer.py ├── information_retrieval.py ├── preprocessing.py ├── rules.txt └── transformations.txt /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /al/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/al/metrics.py -------------------------------------------------------------------------------- /al/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/al/models.py -------------------------------------------------------------------------------- /al/samplers/abstract_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/al/samplers/abstract_sampler.py -------------------------------------------------------------------------------- /al/samplers/combined_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/al/samplers/combined_sampler.py -------------------------------------------------------------------------------- /al/samplers/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/al/samplers/constants.py -------------------------------------------------------------------------------- /al/samplers/deep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/al/samplers/deep.py -------------------------------------------------------------------------------- /al/samplers/density.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/al/samplers/density.py -------------------------------------------------------------------------------- /al/samplers/random_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/al/samplers/random_sampler.py -------------------------------------------------------------------------------- /al/samplers/uncertainty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/al/samplers/uncertainty.py -------------------------------------------------------------------------------- /al/sampling_methods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /al/sampling_methods/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/al/sampling_methods/constants.py -------------------------------------------------------------------------------- /al/sampling_methods/entropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/al/sampling_methods/entropy.py -------------------------------------------------------------------------------- /al/sampling_methods/informative_diverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/al/sampling_methods/informative_diverse.py -------------------------------------------------------------------------------- /al/sampling_methods/margin_AL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/al/sampling_methods/margin_AL.py -------------------------------------------------------------------------------- /al/sampling_methods/sampling_def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/al/sampling_methods/sampling_def.py -------------------------------------------------------------------------------- /al/sampling_methods/uniform_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/al/sampling_methods/uniform_sampling.py -------------------------------------------------------------------------------- /al/stopping_criteria.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/al/stopping_criteria.py -------------------------------------------------------------------------------- /annotation_base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /annotation_base/anno_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/annotation_base/anno_task.py -------------------------------------------------------------------------------- /annotation_base/db_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/annotation_base/db_utils.py -------------------------------------------------------------------------------- /annotation_base/doc_distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/annotation_base/doc_distribution.py -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/app/celery.py -------------------------------------------------------------------------------- /app/context_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/app/context_processor.py -------------------------------------------------------------------------------- /app/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/app/forms.py -------------------------------------------------------------------------------- /app/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/app/pagination.py -------------------------------------------------------------------------------- /app/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/app/settings.py -------------------------------------------------------------------------------- /app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/app/urls.py -------------------------------------------------------------------------------- /app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/app/views.py -------------------------------------------------------------------------------- /app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/app/wsgi.py -------------------------------------------------------------------------------- /deployment/alanno.nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/deployment/alanno.nginx.conf -------------------------------------------------------------------------------- /deployment/django.dev.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/deployment/django.dev.dockerfile -------------------------------------------------------------------------------- /deployment/django.prod.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/deployment/django.prod.dockerfile -------------------------------------------------------------------------------- /deployment/nginx.prod.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/deployment/nginx.prod.dockerfile -------------------------------------------------------------------------------- /deployment/nvidia.dev.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/deployment/nvidia.dev.dockerfile -------------------------------------------------------------------------------- /deployment/webpack.dev.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/deployment/webpack.dev.dockerfile -------------------------------------------------------------------------------- /deployment/webpack.prod.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/deployment/webpack.prod.dockerfile -------------------------------------------------------------------------------- /docker-compose.local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/docker-compose.local.yml -------------------------------------------------------------------------------- /docker-compose.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/docker-compose.prod.yml -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/requirements.txt -------------------------------------------------------------------------------- /server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/admin.py -------------------------------------------------------------------------------- /server/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/api.py -------------------------------------------------------------------------------- /server/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/apps.py -------------------------------------------------------------------------------- /server/custom_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/custom_fields.py -------------------------------------------------------------------------------- /server/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/forms.py -------------------------------------------------------------------------------- /server/management/commands/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/management/commands/celery.py -------------------------------------------------------------------------------- /server/management/commands/initadmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/management/commands/initadmin.py -------------------------------------------------------------------------------- /server/management/commands/initgroups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/management/commands/initgroups.py -------------------------------------------------------------------------------- /server/management/commands/initoptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/management/commands/initoptions.py -------------------------------------------------------------------------------- /server/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/managers.py -------------------------------------------------------------------------------- /server/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/migrations/0001_initial.py -------------------------------------------------------------------------------- /server/migrations/0002_auto_20211206_1655.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/migrations/0002_auto_20211206_1655.py -------------------------------------------------------------------------------- /server/migrations/0003_auto_20211225_1721.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/migrations/0003_auto_20211225_1721.py -------------------------------------------------------------------------------- /server/migrations/0004_auto_20220103_0941.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/migrations/0004_auto_20220103_0941.py -------------------------------------------------------------------------------- /server/migrations/0005_project_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/migrations/0005_project_member.py -------------------------------------------------------------------------------- /server/migrations/0006_rename_member_project_members.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/migrations/0006_rename_member_project_members.py -------------------------------------------------------------------------------- /server/migrations/0007_userlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/migrations/0007_userlog.py -------------------------------------------------------------------------------- /server/migrations/0008_alter_userlog_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/migrations/0008_alter_userlog_type.py -------------------------------------------------------------------------------- /server/migrations/0009_alter_userlog_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/migrations/0009_alter_userlog_metadata.py -------------------------------------------------------------------------------- /server/migrations/0010_alter_project_al_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/migrations/0010_alter_project_al_method.py -------------------------------------------------------------------------------- /server/migrations/0011_auto_20220318_1612.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/migrations/0011_auto_20220318_1612.py -------------------------------------------------------------------------------- /server/migrations/0012_document_indexing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/migrations/0012_document_indexing.py -------------------------------------------------------------------------------- /server/migrations/0013_auto_20220323_1300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/migrations/0013_auto_20220323_1300.py -------------------------------------------------------------------------------- /server/migrations/0014_auto_20220330_1458.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/migrations/0014_auto_20220330_1458.py -------------------------------------------------------------------------------- /server/migrations/0015_auto_20220504_1948.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/migrations/0015_auto_20220504_1948.py -------------------------------------------------------------------------------- /server/migrations/0016_project_is_deleted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/migrations/0016_project_is_deleted.py -------------------------------------------------------------------------------- /server/migrations/0017_alter_project_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/migrations/0017_alter_project_name.py -------------------------------------------------------------------------------- /server/migrations/0018_useroptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/migrations/0018_useroptions.py -------------------------------------------------------------------------------- /server/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/models/__init__.py -------------------------------------------------------------------------------- /server/models/annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/models/annotation.py -------------------------------------------------------------------------------- /server/models/classification_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/models/classification_document.py -------------------------------------------------------------------------------- /server/models/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/models/document.py -------------------------------------------------------------------------------- /server/models/document_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/models/document_annotation.py -------------------------------------------------------------------------------- /server/models/export_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/models/export_data.py -------------------------------------------------------------------------------- /server/models/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/models/label.py -------------------------------------------------------------------------------- /server/models/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/models/project.py -------------------------------------------------------------------------------- /server/models/project_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/models/project_statistics.py -------------------------------------------------------------------------------- /server/models/round.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/models/round.py -------------------------------------------------------------------------------- /server/models/sequence_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/models/sequence_annotation.py -------------------------------------------------------------------------------- /server/models/sequence_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/models/sequence_document.py -------------------------------------------------------------------------------- /server/models/user_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/models/user_log.py -------------------------------------------------------------------------------- /server/models/user_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/models/user_options.py -------------------------------------------------------------------------------- /server/old_tests/test_annotation_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/old_tests/test_annotation_api.py -------------------------------------------------------------------------------- /server/old_tests/test_doc_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/old_tests/test_doc_api.py -------------------------------------------------------------------------------- /server/old_tests/test_label_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/old_tests/test_label_api.py -------------------------------------------------------------------------------- /server/old_tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/old_tests/test_models.py -------------------------------------------------------------------------------- /server/old_tests/test_projects_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/old_tests/test_projects_api.py -------------------------------------------------------------------------------- /server/old_tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/old_tests/test_views.py -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/package.json -------------------------------------------------------------------------------- /server/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/parser.py -------------------------------------------------------------------------------- /server/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/permissions.py -------------------------------------------------------------------------------- /server/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/serializers.py -------------------------------------------------------------------------------- /server/services/export_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/services/export_dataset.py -------------------------------------------------------------------------------- /server/services/import_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/services/import_dataset.py -------------------------------------------------------------------------------- /server/services/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/services/statistics.py -------------------------------------------------------------------------------- /server/singletons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/singletons.py -------------------------------------------------------------------------------- /server/static/bundle/control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/bundle/control.js -------------------------------------------------------------------------------- /server/static/bundle/dataset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/bundle/dataset.js -------------------------------------------------------------------------------- /server/static/bundle/document_classification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/bundle/document_classification.js -------------------------------------------------------------------------------- /server/static/bundle/gl_classification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/bundle/gl_classification.js -------------------------------------------------------------------------------- /server/static/bundle/gl_seq_lab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/bundle/gl_seq_lab.js -------------------------------------------------------------------------------- /server/static/bundle/hier_classification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/bundle/hier_classification.js -------------------------------------------------------------------------------- /server/static/bundle/instructions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/bundle/instructions.js -------------------------------------------------------------------------------- /server/static/bundle/kex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/bundle/kex.js -------------------------------------------------------------------------------- /server/static/bundle/label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/bundle/label.js -------------------------------------------------------------------------------- /server/static/bundle/projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/bundle/projects.js -------------------------------------------------------------------------------- /server/static/bundle/seq2seq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/bundle/seq2seq.js -------------------------------------------------------------------------------- /server/static/bundle/sequence_labeling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/bundle/sequence_labeling.js -------------------------------------------------------------------------------- /server/static/bundle/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/bundle/settings.js -------------------------------------------------------------------------------- /server/static/bundle/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/bundle/stats.js -------------------------------------------------------------------------------- /server/static/bundle/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/bundle/test.js -------------------------------------------------------------------------------- /server/static/bundle/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/bundle/upload.js -------------------------------------------------------------------------------- /server/static/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/css/admin.css -------------------------------------------------------------------------------- /server/static/css/annotation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/css/annotation.css -------------------------------------------------------------------------------- /server/static/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/css/base.css -------------------------------------------------------------------------------- /server/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/css/bootstrap.css -------------------------------------------------------------------------------- /server/static/css/bulma.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/css/bulma.min.css -------------------------------------------------------------------------------- /server/static/css/cards.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/css/cards.css -------------------------------------------------------------------------------- /server/static/css/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/css/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /server/static/css/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/css/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /server/static/css/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/css/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /server/static/css/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/css/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /server/static/css/font-awesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/css/font-awesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /server/static/css/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/css/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /server/static/css/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/css/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /server/static/css/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/css/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /server/static/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/css/fonts.css -------------------------------------------------------------------------------- /server/static/css/forum.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/css/forum.css -------------------------------------------------------------------------------- /server/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/css/main.css -------------------------------------------------------------------------------- /server/static/css/micons/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/css/micons/fonts/icomoon.eot -------------------------------------------------------------------------------- /server/static/css/micons/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/css/micons/fonts/icomoon.svg -------------------------------------------------------------------------------- /server/static/css/micons/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/css/micons/fonts/icomoon.ttf -------------------------------------------------------------------------------- /server/static/css/micons/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/css/micons/fonts/icomoon.woff -------------------------------------------------------------------------------- /server/static/css/micons/micons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/css/micons/micons.css -------------------------------------------------------------------------------- /server/static/css/org-tree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/css/org-tree.css -------------------------------------------------------------------------------- /server/static/css/select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/css/select.css -------------------------------------------------------------------------------- /server/static/css/sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/css/sidebar.css -------------------------------------------------------------------------------- /server/static/css/vendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/css/vendor.css -------------------------------------------------------------------------------- /server/static/css/vue-multiselect.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/css/vue-multiselect.min.css -------------------------------------------------------------------------------- /server/static/css/vue-slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/css/vue-slider.css -------------------------------------------------------------------------------- /server/static/fonts/lora/lora-bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/fonts/lora/lora-bold-webfont.ttf -------------------------------------------------------------------------------- /server/static/fonts/lora/lora-bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/fonts/lora/lora-bold-webfont.woff -------------------------------------------------------------------------------- /server/static/fonts/lora/lora-bold-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/fonts/lora/lora-bold-webfont.woff2 -------------------------------------------------------------------------------- /server/static/fonts/lora/lora-bolditalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/fonts/lora/lora-bolditalic-webfont.woff -------------------------------------------------------------------------------- /server/static/fonts/lora/lora-bolditalic-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/fonts/lora/lora-bolditalic-webfont.woff2 -------------------------------------------------------------------------------- /server/static/fonts/lora/lora-italic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/fonts/lora/lora-italic-webfont.ttf -------------------------------------------------------------------------------- /server/static/fonts/lora/lora-italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/fonts/lora/lora-italic-webfont.woff -------------------------------------------------------------------------------- /server/static/fonts/lora/lora-italic-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/fonts/lora/lora-italic-webfont.woff2 -------------------------------------------------------------------------------- /server/static/fonts/lora/lora-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/fonts/lora/lora-regular-webfont.woff -------------------------------------------------------------------------------- /server/static/fonts/lora/lora-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/fonts/lora/lora-regular-webfont.woff2 -------------------------------------------------------------------------------- /server/static/fonts/montserrat/montserrat-black-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/fonts/montserrat/montserrat-black-webfont.woff -------------------------------------------------------------------------------- /server/static/fonts/montserrat/montserrat-black-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/fonts/montserrat/montserrat-black-webfont.woff2 -------------------------------------------------------------------------------- /server/static/fonts/montserrat/montserrat-bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/fonts/montserrat/montserrat-bold-webfont.woff -------------------------------------------------------------------------------- /server/static/fonts/montserrat/montserrat-bold-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/fonts/montserrat/montserrat-bold-webfont.woff2 -------------------------------------------------------------------------------- /server/static/fonts/montserrat/montserrat-extrabold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/fonts/montserrat/montserrat-extrabold-webfont.woff -------------------------------------------------------------------------------- /server/static/fonts/montserrat/montserrat-extrabold-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/fonts/montserrat/montserrat-extrabold-webfont.woff2 -------------------------------------------------------------------------------- /server/static/fonts/montserrat/montserrat-extralight-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/fonts/montserrat/montserrat-extralight-webfont.woff -------------------------------------------------------------------------------- /server/static/fonts/montserrat/montserrat-extralight-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/fonts/montserrat/montserrat-extralight-webfont.woff2 -------------------------------------------------------------------------------- /server/static/fonts/montserrat/montserrat-light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/fonts/montserrat/montserrat-light-webfont.woff -------------------------------------------------------------------------------- /server/static/fonts/montserrat/montserrat-light-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/fonts/montserrat/montserrat-light-webfont.woff2 -------------------------------------------------------------------------------- /server/static/fonts/montserrat/montserrat-medium-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/fonts/montserrat/montserrat-medium-webfont.woff -------------------------------------------------------------------------------- /server/static/fonts/montserrat/montserrat-medium-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/fonts/montserrat/montserrat-medium-webfont.woff2 -------------------------------------------------------------------------------- /server/static/fonts/montserrat/montserrat-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/fonts/montserrat/montserrat-regular-webfont.woff -------------------------------------------------------------------------------- /server/static/fonts/montserrat/montserrat-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/fonts/montserrat/montserrat-regular-webfont.woff2 -------------------------------------------------------------------------------- /server/static/fonts/montserrat/montserrat-semibold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/fonts/montserrat/montserrat-semibold-webfont.woff -------------------------------------------------------------------------------- /server/static/fonts/montserrat/montserrat-semibold-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/fonts/montserrat/montserrat-semibold-webfont.woff2 -------------------------------------------------------------------------------- /server/static/fonts/montserrat/montserrat-thin-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/fonts/montserrat/montserrat-thin-webfont.woff -------------------------------------------------------------------------------- /server/static/fonts/montserrat/montserrat-thin-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/fonts/montserrat/montserrat-thin-webfont.woff2 -------------------------------------------------------------------------------- /server/static/images/avatars/user-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/avatars/user-01.jpg -------------------------------------------------------------------------------- /server/static/images/avatars/user-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/avatars/user-02.jpg -------------------------------------------------------------------------------- /server/static/images/avatars/user-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/avatars/user-03.jpg -------------------------------------------------------------------------------- /server/static/images/avatars/user-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/avatars/user-04.jpg -------------------------------------------------------------------------------- /server/static/images/avatars/user-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/avatars/user-05.jpg -------------------------------------------------------------------------------- /server/static/images/clients/django.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/clients/django.png -------------------------------------------------------------------------------- /server/static/images/clients/docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/clients/docker.png -------------------------------------------------------------------------------- /server/static/images/clients/pyro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/clients/pyro.png -------------------------------------------------------------------------------- /server/static/images/clients/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/clients/python.png -------------------------------------------------------------------------------- /server/static/images/clients/pytorch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/clients/pytorch.png -------------------------------------------------------------------------------- /server/static/images/clients/sklearn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/clients/sklearn.png -------------------------------------------------------------------------------- /server/static/images/clients/vue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/clients/vue.png -------------------------------------------------------------------------------- /server/static/images/contact-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/contact-bg.jpg -------------------------------------------------------------------------------- /server/static/images/context.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/context.jpg -------------------------------------------------------------------------------- /server/static/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/delete.png -------------------------------------------------------------------------------- /server/static/images/email-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/email-icon.png -------------------------------------------------------------------------------- /server/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/favicon.ico -------------------------------------------------------------------------------- /server/static/images/form-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/form-bg.jpg -------------------------------------------------------------------------------- /server/static/images/hero-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/hero-bg.jpg -------------------------------------------------------------------------------- /server/static/images/home-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/home-bg.jpg -------------------------------------------------------------------------------- /server/static/images/left-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/left-arrow.png -------------------------------------------------------------------------------- /server/static/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/lock.png -------------------------------------------------------------------------------- /server/static/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/logo.svg -------------------------------------------------------------------------------- /server/static/images/mountain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/mountain.jpg -------------------------------------------------------------------------------- /server/static/images/photoswipe/default-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/photoswipe/default-skin.png -------------------------------------------------------------------------------- /server/static/images/photoswipe/default-skin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/photoswipe/default-skin.svg -------------------------------------------------------------------------------- /server/static/images/photoswipe/preloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/photoswipe/preloader.gif -------------------------------------------------------------------------------- /server/static/images/projects/img-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/projects/img-0.jpg -------------------------------------------------------------------------------- /server/static/images/projects/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/projects/img-1.jpg -------------------------------------------------------------------------------- /server/static/images/projects/img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/projects/img-2.jpg -------------------------------------------------------------------------------- /server/static/images/projects/img-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/projects/img-3.jpg -------------------------------------------------------------------------------- /server/static/images/projects/img-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/projects/img-4.jpg -------------------------------------------------------------------------------- /server/static/images/projects/img-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/projects/img-5.jpg -------------------------------------------------------------------------------- /server/static/images/projects/img-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/projects/img-6.jpg -------------------------------------------------------------------------------- /server/static/images/projects/img-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/projects/img-7.jpg -------------------------------------------------------------------------------- /server/static/images/projects/img-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/projects/img-8.jpg -------------------------------------------------------------------------------- /server/static/images/projects/img-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/projects/img-9.jpg -------------------------------------------------------------------------------- /server/static/images/register-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/register-bg.jpg -------------------------------------------------------------------------------- /server/static/images/right-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/right-arrow.png -------------------------------------------------------------------------------- /server/static/images/sample-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/sample-image.jpg -------------------------------------------------------------------------------- /server/static/images/tl-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/tl-logo.png -------------------------------------------------------------------------------- /server/static/images/wheel-1000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/wheel-1000.jpg -------------------------------------------------------------------------------- /server/static/images/wheel-2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/wheel-2000.jpg -------------------------------------------------------------------------------- /server/static/images/wheel-500.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/images/wheel-500.jpg -------------------------------------------------------------------------------- /server/static/js/admin/control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/js/admin/control.js -------------------------------------------------------------------------------- /server/static/js/admin/dataset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/js/admin/dataset.js -------------------------------------------------------------------------------- /server/static/js/admin/instructions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/js/admin/instructions.js -------------------------------------------------------------------------------- /server/static/js/admin/label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/js/admin/label.js -------------------------------------------------------------------------------- /server/static/js/admin/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/js/admin/settings.js -------------------------------------------------------------------------------- /server/static/js/admin/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/js/admin/stats.js -------------------------------------------------------------------------------- /server/static/js/admin/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/js/admin/upload.js -------------------------------------------------------------------------------- /server/static/js/annotation/annotations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/js/annotation/annotations.js -------------------------------------------------------------------------------- /server/static/js/annotation/document_classification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/js/annotation/document_classification.js -------------------------------------------------------------------------------- /server/static/js/annotation/hier_classification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/js/annotation/hier_classification.js -------------------------------------------------------------------------------- /server/static/js/annotation/seq2seq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/js/annotation/seq2seq.js -------------------------------------------------------------------------------- /server/static/js/annotation/sequence_labeling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/js/annotation/sequence_labeling.js -------------------------------------------------------------------------------- /server/static/js/gl_anno/gl_anno.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/js/gl_anno/gl_anno.js -------------------------------------------------------------------------------- /server/static/js/gl_anno/gl_classification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/js/gl_anno/gl_classification.js -------------------------------------------------------------------------------- /server/static/js/gl_anno/gl_seq_lab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/js/gl_anno/gl_seq_lab.js -------------------------------------------------------------------------------- /server/static/js/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/js/http.js -------------------------------------------------------------------------------- /server/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/js/jquery.min.js -------------------------------------------------------------------------------- /server/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/js/main.js -------------------------------------------------------------------------------- /server/static/js/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/js/modernizr.js -------------------------------------------------------------------------------- /server/static/js/pace.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/js/pace.min.js -------------------------------------------------------------------------------- /server/static/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/js/plugins.js -------------------------------------------------------------------------------- /server/static/js/projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/js/projects.js -------------------------------------------------------------------------------- /server/static/js/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/js/test.js -------------------------------------------------------------------------------- /server/static/js/utils/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/js/utils/jquery.min.js -------------------------------------------------------------------------------- /server/static/js/utils/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/js/utils/marked.js -------------------------------------------------------------------------------- /server/static/js/utils/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/js/utils/modernizr.js -------------------------------------------------------------------------------- /server/static/js/utils/pace.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/js/utils/pace.min.js -------------------------------------------------------------------------------- /server/static/js/utils/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/static/js/utils/plugins.js -------------------------------------------------------------------------------- /server/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/tasks.py -------------------------------------------------------------------------------- /server/templates/admin/admin_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/templates/admin/admin_base.html -------------------------------------------------------------------------------- /server/templates/admin/control.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/templates/admin/control.html -------------------------------------------------------------------------------- /server/templates/admin/dataset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/templates/admin/dataset.html -------------------------------------------------------------------------------- /server/templates/admin/export.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/templates/admin/export.html -------------------------------------------------------------------------------- /server/templates/admin/import.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/templates/admin/import.html -------------------------------------------------------------------------------- /server/templates/admin/instructions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/templates/admin/instructions.html -------------------------------------------------------------------------------- /server/templates/admin/label.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/templates/admin/label.html -------------------------------------------------------------------------------- /server/templates/admin/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/templates/admin/settings.html -------------------------------------------------------------------------------- /server/templates/admin/stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/templates/admin/stats.html -------------------------------------------------------------------------------- /server/templates/annotation/annotation_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/templates/annotation/annotation_base.html -------------------------------------------------------------------------------- /server/templates/annotation/document_classification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/templates/annotation/document_classification.html -------------------------------------------------------------------------------- /server/templates/annotation/hier_classification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/templates/annotation/hier_classification.html -------------------------------------------------------------------------------- /server/templates/annotation/seq2seq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/templates/annotation/seq2seq.html -------------------------------------------------------------------------------- /server/templates/annotation/sequence_labeling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/templates/annotation/sequence_labeling.html -------------------------------------------------------------------------------- /server/templates/general/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/templates/general/base.html -------------------------------------------------------------------------------- /server/templates/general/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/templates/general/home.html -------------------------------------------------------------------------------- /server/templates/general/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/templates/general/login.html -------------------------------------------------------------------------------- /server/templates/general/projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/templates/general/projects.html -------------------------------------------------------------------------------- /server/templates/general/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/templates/general/register.html -------------------------------------------------------------------------------- /server/templates/general/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/templates/general/test.html -------------------------------------------------------------------------------- /server/templates/gl_anno/gl_anno_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/templates/gl_anno/gl_anno_base.html -------------------------------------------------------------------------------- /server/templates/gl_anno/gl_classification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/templates/gl_anno/gl_classification.html -------------------------------------------------------------------------------- /server/templates/gl_anno/gl_seq_lab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/templates/gl_anno/gl_seq_lab.html -------------------------------------------------------------------------------- /server/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/templatetags/templatetags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/templatetags/templatetags.py -------------------------------------------------------------------------------- /server/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/tests/test_al.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/tests/test_al.py -------------------------------------------------------------------------------- /server/tests/test_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/tests/test_annotation.py -------------------------------------------------------------------------------- /server/tests/test_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/tests/test_control.py -------------------------------------------------------------------------------- /server/tests/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/tests/test_data.py -------------------------------------------------------------------------------- /server/tests/test_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/tests/test_export.py -------------------------------------------------------------------------------- /server/tests/test_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/tests/test_import.py -------------------------------------------------------------------------------- /server/tests/test_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/tests/test_labels.py -------------------------------------------------------------------------------- /server/tests/test_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/tests/test_project.py -------------------------------------------------------------------------------- /server/tests/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/tests/test_settings.py -------------------------------------------------------------------------------- /server/tests/test_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/tests/test_stats.py -------------------------------------------------------------------------------- /server/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/tests/utils.py -------------------------------------------------------------------------------- /server/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/urls.py -------------------------------------------------------------------------------- /server/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/views.py -------------------------------------------------------------------------------- /server/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/server/webpack.config.js -------------------------------------------------------------------------------- /text/cro_stemmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/text/cro_stemmer.py -------------------------------------------------------------------------------- /text/information_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/text/information_retrieval.py -------------------------------------------------------------------------------- /text/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/text/preprocessing.py -------------------------------------------------------------------------------- /text/rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/text/rules.txt -------------------------------------------------------------------------------- /text/transformations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josipjukic/alanno/HEAD/text/transformations.txt --------------------------------------------------------------------------------