endoreg-db 0.8.9.2__py3-none-any.whl → 0.8.9.10__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of endoreg-db might be problematic. Click here for more details.
- endoreg_db/admin.py +10 -5
- endoreg_db/apps.py +4 -7
- endoreg_db/authz/auth.py +1 -0
- endoreg_db/authz/backends.py +1 -1
- endoreg_db/authz/management/commands/list_routes.py +2 -0
- endoreg_db/authz/middleware.py +8 -7
- endoreg_db/authz/permissions.py +21 -10
- endoreg_db/authz/policy.py +14 -19
- endoreg_db/authz/views_auth.py +14 -10
- endoreg_db/codemods/rename_datetime_fields.py +8 -1
- endoreg_db/exceptions.py +5 -2
- endoreg_db/forms/__init__.py +0 -1
- endoreg_db/forms/examination_form.py +4 -3
- endoreg_db/forms/patient_finding_intervention_form.py +30 -8
- endoreg_db/forms/patient_form.py +9 -13
- endoreg_db/forms/questionnaires/__init__.py +1 -1
- endoreg_db/forms/settings/__init__.py +4 -1
- endoreg_db/forms/unit.py +2 -1
- endoreg_db/helpers/count_db.py +17 -14
- endoreg_db/helpers/default_objects.py +2 -1
- endoreg_db/helpers/download_segmentation_model.py +4 -3
- endoreg_db/helpers/interact.py +0 -5
- endoreg_db/helpers/test_video_helper.py +33 -25
- endoreg_db/import_files/__init__.py +1 -1
- endoreg_db/import_files/context/__init__.py +1 -1
- endoreg_db/import_files/context/default_sensitive_meta.py +11 -9
- endoreg_db/import_files/context/ensure_center.py +4 -4
- endoreg_db/import_files/context/file_lock.py +3 -3
- endoreg_db/import_files/context/import_context.py +11 -12
- endoreg_db/import_files/context/validate_directories.py +1 -0
- endoreg_db/import_files/file_storage/create_report_file.py +57 -34
- endoreg_db/import_files/file_storage/create_video_file.py +64 -35
- endoreg_db/import_files/file_storage/sensitive_meta_storage.py +5 -2
- endoreg_db/import_files/file_storage/state_management.py +89 -122
- endoreg_db/import_files/file_storage/storage.py +5 -1
- endoreg_db/import_files/processing/report_processing/report_anonymization.py +24 -19
- endoreg_db/import_files/processing/sensitive_meta_adapter.py +3 -3
- endoreg_db/import_files/processing/video_processing/video_anonymization.py +18 -18
- endoreg_db/import_files/pseudonymization/k_anonymity.py +8 -9
- endoreg_db/import_files/pseudonymization/k_pseudonymity.py +16 -5
- endoreg_db/import_files/report_import_service.py +36 -30
- endoreg_db/import_files/video_import_service.py +27 -23
- endoreg_db/logger_conf.py +56 -40
- endoreg_db/management/__init__.py +1 -1
- endoreg_db/management/commands/__init__.py +1 -1
- endoreg_db/management/commands/check_auth.py +45 -38
- endoreg_db/management/commands/create_model_meta_from_huggingface.py +53 -2
- endoreg_db/management/commands/create_multilabel_model_meta.py +54 -19
- endoreg_db/management/commands/fix_missing_patient_data.py +105 -71
- endoreg_db/management/commands/fix_video_paths.py +75 -54
- endoreg_db/management/commands/import_report.py +1 -3
- endoreg_db/management/commands/list_routes.py +2 -0
- endoreg_db/management/commands/load_ai_model_data.py +8 -2
- endoreg_db/management/commands/load_ai_model_label_data.py +0 -1
- endoreg_db/management/commands/load_center_data.py +3 -3
- endoreg_db/management/commands/load_distribution_data.py +35 -38
- endoreg_db/management/commands/load_endoscope_data.py +0 -3
- endoreg_db/management/commands/load_examination_data.py +20 -4
- endoreg_db/management/commands/load_finding_data.py +18 -3
- endoreg_db/management/commands/load_gender_data.py +17 -24
- endoreg_db/management/commands/load_green_endoscopy_wuerzburg_data.py +95 -85
- endoreg_db/management/commands/load_information_source.py +0 -3
- endoreg_db/management/commands/load_lab_value_data.py +14 -3
- endoreg_db/management/commands/load_legacy_data.py +303 -0
- endoreg_db/management/commands/load_name_data.py +1 -2
- endoreg_db/management/commands/load_pdf_type_data.py +4 -8
- endoreg_db/management/commands/load_profession_data.py +0 -1
- endoreg_db/management/commands/load_report_reader_flag_data.py +0 -4
- endoreg_db/management/commands/load_requirement_data.py +6 -2
- endoreg_db/management/commands/load_unit_data.py +0 -4
- endoreg_db/management/commands/load_user_groups.py +5 -7
- endoreg_db/management/commands/model_input.py +169 -0
- endoreg_db/management/commands/register_ai_model.py +22 -16
- endoreg_db/management/commands/setup_endoreg_db.py +110 -32
- endoreg_db/management/commands/storage_management.py +14 -8
- endoreg_db/management/commands/summarize_db_content.py +154 -63
- endoreg_db/management/commands/train_image_multilabel_model.py +144 -0
- endoreg_db/management/commands/validate_video_files.py +82 -50
- endoreg_db/management/commands/video_validation.py +4 -6
- endoreg_db/migrations/0001_initial.py +112 -63
- endoreg_db/models/__init__.py +8 -0
- endoreg_db/models/administration/ai/active_model.py +5 -5
- endoreg_db/models/administration/ai/ai_model.py +41 -18
- endoreg_db/models/administration/ai/model_type.py +1 -0
- endoreg_db/models/administration/case/case.py +22 -22
- endoreg_db/models/administration/center/__init__.py +5 -5
- endoreg_db/models/administration/center/center.py +6 -2
- endoreg_db/models/administration/center/center_resource.py +18 -4
- endoreg_db/models/administration/center/center_shift.py +3 -1
- endoreg_db/models/administration/center/center_waste.py +6 -2
- endoreg_db/models/administration/person/__init__.py +1 -1
- endoreg_db/models/administration/person/employee/__init__.py +1 -1
- endoreg_db/models/administration/person/employee/employee_type.py +3 -1
- endoreg_db/models/administration/person/examiner/__init__.py +1 -1
- endoreg_db/models/administration/person/examiner/examiner.py +10 -2
- endoreg_db/models/administration/person/names/first_name.py +6 -4
- endoreg_db/models/administration/person/names/last_name.py +4 -3
- endoreg_db/models/administration/person/patient/__init__.py +1 -1
- endoreg_db/models/administration/person/patient/patient.py +0 -1
- endoreg_db/models/administration/person/patient/patient_external_id.py +0 -1
- endoreg_db/models/administration/person/person.py +1 -1
- endoreg_db/models/administration/product/__init__.py +7 -6
- endoreg_db/models/administration/product/product.py +6 -2
- endoreg_db/models/administration/product/product_group.py +9 -7
- endoreg_db/models/administration/product/product_material.py +9 -2
- endoreg_db/models/administration/product/reference_product.py +64 -15
- endoreg_db/models/administration/qualification/qualification.py +3 -1
- endoreg_db/models/administration/shift/shift.py +3 -1
- endoreg_db/models/administration/shift/shift_type.py +12 -4
- endoreg_db/models/aidataset/__init__.py +5 -0
- endoreg_db/models/aidataset/aidataset.py +193 -0
- endoreg_db/models/label/__init__.py +1 -1
- endoreg_db/models/label/label.py +10 -2
- endoreg_db/models/label/label_set.py +3 -1
- endoreg_db/models/label/label_video_segment/_create_from_video.py +6 -2
- endoreg_db/models/label/label_video_segment/label_video_segment.py +148 -44
- endoreg_db/models/media/__init__.py +12 -5
- endoreg_db/models/media/frame/__init__.py +1 -1
- endoreg_db/models/media/frame/frame.py +34 -8
- endoreg_db/models/media/pdf/__init__.py +2 -1
- endoreg_db/models/media/pdf/raw_pdf.py +11 -4
- endoreg_db/models/media/pdf/report_file.py +6 -2
- endoreg_db/models/media/pdf/report_reader/__init__.py +3 -3
- endoreg_db/models/media/pdf/report_reader/report_reader_flag.py +15 -5
- endoreg_db/models/media/video/create_from_file.py +20 -41
- endoreg_db/models/media/video/pipe_1.py +75 -30
- endoreg_db/models/media/video/pipe_2.py +37 -12
- endoreg_db/models/media/video/video_file.py +36 -24
- endoreg_db/models/media/video/video_file_ai.py +235 -70
- endoreg_db/models/media/video/video_file_anonymize.py +240 -65
- endoreg_db/models/media/video/video_file_frames/_bulk_create_frames.py +6 -1
- endoreg_db/models/media/video/video_file_frames/_create_frame_object.py +3 -1
- endoreg_db/models/media/video/video_file_frames/_delete_frames.py +30 -9
- endoreg_db/models/media/video/video_file_frames/_extract_frames.py +95 -29
- endoreg_db/models/media/video/video_file_frames/_get_frame.py +13 -3
- endoreg_db/models/media/video/video_file_frames/_get_frame_path.py +4 -1
- endoreg_db/models/media/video/video_file_frames/_get_frame_paths.py +15 -3
- endoreg_db/models/media/video/video_file_frames/_get_frame_range.py +15 -3
- endoreg_db/models/media/video/video_file_frames/_get_frames.py +7 -2
- endoreg_db/models/media/video/video_file_frames/_initialize_frames.py +109 -23
- endoreg_db/models/media/video/video_file_frames/_manage_frame_range.py +111 -27
- endoreg_db/models/media/video/video_file_frames/_mark_frames_extracted_status.py +46 -13
- endoreg_db/models/media/video/video_file_io.py +85 -33
- endoreg_db/models/media/video/video_file_meta/__init__.py +6 -6
- endoreg_db/models/media/video/video_file_meta/get_crop_template.py +17 -4
- endoreg_db/models/media/video/video_file_meta/get_endo_roi.py +28 -7
- endoreg_db/models/media/video/video_file_meta/get_fps.py +46 -13
- endoreg_db/models/media/video/video_file_meta/initialize_video_specs.py +81 -20
- endoreg_db/models/media/video/video_file_meta/text_meta.py +61 -20
- endoreg_db/models/media/video/video_file_meta/video_meta.py +40 -12
- endoreg_db/models/media/video/video_file_segments.py +118 -27
- endoreg_db/models/media/video/video_metadata.py +25 -6
- endoreg_db/models/media/video/video_processing.py +54 -15
- endoreg_db/models/medical/__init__.py +3 -13
- endoreg_db/models/medical/contraindication/__init__.py +3 -1
- endoreg_db/models/medical/disease.py +18 -6
- endoreg_db/models/medical/event.py +6 -2
- endoreg_db/models/medical/examination/__init__.py +5 -1
- endoreg_db/models/medical/examination/examination.py +22 -6
- endoreg_db/models/medical/examination/examination_indication.py +23 -7
- endoreg_db/models/medical/examination/examination_time.py +6 -2
- endoreg_db/models/medical/finding/__init__.py +3 -1
- endoreg_db/models/medical/finding/finding.py +37 -12
- endoreg_db/models/medical/finding/finding_classification.py +27 -8
- endoreg_db/models/medical/finding/finding_intervention.py +19 -6
- endoreg_db/models/medical/finding/finding_type.py +3 -1
- endoreg_db/models/medical/hardware/__init__.py +1 -1
- endoreg_db/models/medical/hardware/endoscope.py +14 -2
- endoreg_db/models/medical/laboratory/__init__.py +1 -1
- endoreg_db/models/medical/laboratory/lab_value.py +139 -39
- endoreg_db/models/medical/medication/__init__.py +7 -3
- endoreg_db/models/medical/medication/medication.py +3 -1
- endoreg_db/models/medical/medication/medication_indication.py +3 -1
- endoreg_db/models/medical/medication/medication_indication_type.py +11 -3
- endoreg_db/models/medical/medication/medication_intake_time.py +3 -1
- endoreg_db/models/medical/medication/medication_schedule.py +3 -1
- endoreg_db/models/medical/patient/__init__.py +2 -10
- endoreg_db/models/medical/patient/medication_examples.py +3 -14
- endoreg_db/models/medical/patient/patient_disease.py +17 -5
- endoreg_db/models/medical/patient/patient_event.py +12 -4
- endoreg_db/models/medical/patient/patient_examination.py +52 -15
- endoreg_db/models/medical/patient/patient_examination_indication.py +15 -4
- endoreg_db/models/medical/patient/patient_finding.py +105 -29
- endoreg_db/models/medical/patient/patient_finding_classification.py +41 -12
- endoreg_db/models/medical/patient/patient_finding_intervention.py +11 -3
- endoreg_db/models/medical/patient/patient_lab_sample.py +6 -2
- endoreg_db/models/medical/patient/patient_lab_value.py +42 -10
- endoreg_db/models/medical/patient/patient_medication.py +25 -7
- endoreg_db/models/medical/patient/patient_medication_schedule.py +34 -10
- endoreg_db/models/metadata/model_meta.py +40 -12
- endoreg_db/models/metadata/model_meta_logic.py +51 -16
- endoreg_db/models/metadata/sensitive_meta.py +65 -28
- endoreg_db/models/metadata/sensitive_meta_logic.py +28 -26
- endoreg_db/models/metadata/video_meta.py +146 -39
- endoreg_db/models/metadata/video_prediction_logic.py +70 -21
- endoreg_db/models/metadata/video_prediction_meta.py +80 -27
- endoreg_db/models/operation_log.py +63 -0
- endoreg_db/models/other/__init__.py +10 -10
- endoreg_db/models/other/distribution/__init__.py +9 -7
- endoreg_db/models/other/distribution/base_value_distribution.py +3 -1
- endoreg_db/models/other/distribution/date_value_distribution.py +19 -5
- endoreg_db/models/other/distribution/multiple_categorical_value_distribution.py +3 -1
- endoreg_db/models/other/distribution/numeric_value_distribution.py +34 -9
- endoreg_db/models/other/emission/__init__.py +1 -1
- endoreg_db/models/other/emission/emission_factor.py +9 -3
- endoreg_db/models/other/information_source.py +15 -5
- endoreg_db/models/other/material.py +3 -1
- endoreg_db/models/other/transport_route.py +3 -1
- endoreg_db/models/other/unit.py +6 -2
- endoreg_db/models/report/report.py +0 -1
- endoreg_db/models/requirement/requirement.py +84 -27
- endoreg_db/models/requirement/requirement_error.py +5 -6
- endoreg_db/models/requirement/requirement_evaluation/__init__.py +1 -1
- endoreg_db/models/requirement/requirement_evaluation/evaluate_with_dependencies.py +8 -8
- endoreg_db/models/requirement/requirement_evaluation/get_values.py +3 -3
- endoreg_db/models/requirement/requirement_evaluation/requirement_type_parser.py +24 -8
- endoreg_db/models/requirement/requirement_operator.py +28 -8
- endoreg_db/models/requirement/requirement_set.py +34 -11
- endoreg_db/models/state/__init__.py +1 -0
- endoreg_db/models/state/audit_ledger.py +9 -2
- endoreg_db/models/{media → state}/processing_history/__init__.py +1 -3
- endoreg_db/models/state/processing_history/processing_history.py +136 -0
- endoreg_db/models/state/raw_pdf.py +0 -1
- endoreg_db/models/state/video.py +2 -4
- endoreg_db/models/utils.py +4 -2
- endoreg_db/queries/__init__.py +2 -6
- endoreg_db/queries/annotations/__init__.py +1 -3
- endoreg_db/queries/annotations/legacy.py +37 -26
- endoreg_db/root_urls.py +3 -4
- endoreg_db/schemas/examination_evaluation.py +3 -0
- endoreg_db/serializers/Frames_NICE_and_PARIS_classifications.py +249 -163
- endoreg_db/serializers/__init__.py +2 -8
- endoreg_db/serializers/administration/__init__.py +1 -2
- endoreg_db/serializers/administration/ai/__init__.py +0 -1
- endoreg_db/serializers/administration/ai/active_model.py +3 -1
- endoreg_db/serializers/administration/ai/ai_model.py +5 -3
- endoreg_db/serializers/administration/ai/model_type.py +3 -1
- endoreg_db/serializers/administration/center.py +7 -2
- endoreg_db/serializers/administration/gender.py +4 -2
- endoreg_db/serializers/anonymization.py +13 -13
- endoreg_db/serializers/evaluation/examination_evaluation.py +0 -1
- endoreg_db/serializers/examination/__init__.py +1 -1
- endoreg_db/serializers/examination/base.py +12 -13
- endoreg_db/serializers/examination/dropdown.py +6 -7
- endoreg_db/serializers/examination_serializer.py +3 -6
- endoreg_db/serializers/finding/__init__.py +1 -1
- endoreg_db/serializers/finding/finding.py +14 -7
- endoreg_db/serializers/finding_classification/__init__.py +3 -3
- endoreg_db/serializers/finding_classification/choice.py +3 -3
- endoreg_db/serializers/finding_classification/classification.py +2 -4
- endoreg_db/serializers/label_video_segment/__init__.py +5 -3
- endoreg_db/serializers/{label → label_video_segment}/image_classification_annotation.py +5 -5
- endoreg_db/serializers/label_video_segment/label/__init__.py +6 -0
- endoreg_db/serializers/{label → label_video_segment/label}/label.py +1 -1
- endoreg_db/serializers/label_video_segment/label_video_segment.py +338 -228
- endoreg_db/serializers/meta/__init__.py +1 -2
- endoreg_db/serializers/meta/sensitive_meta_detail.py +28 -13
- endoreg_db/serializers/meta/sensitive_meta_update.py +51 -46
- endoreg_db/serializers/meta/sensitive_meta_verification.py +19 -16
- endoreg_db/serializers/misc/__init__.py +2 -2
- endoreg_db/serializers/misc/file_overview.py +11 -7
- endoreg_db/serializers/misc/stats.py +10 -8
- endoreg_db/serializers/misc/translatable_field_mix_in.py +6 -6
- endoreg_db/serializers/misc/upload_job.py +32 -29
- endoreg_db/serializers/patient/__init__.py +2 -1
- endoreg_db/serializers/patient/patient.py +32 -15
- endoreg_db/serializers/patient/patient_dropdown.py +11 -3
- endoreg_db/serializers/patient_examination/__init__.py +1 -1
- endoreg_db/serializers/patient_examination/patient_examination.py +67 -40
- endoreg_db/serializers/patient_finding/__init__.py +1 -1
- endoreg_db/serializers/patient_finding/patient_finding.py +2 -1
- endoreg_db/serializers/patient_finding/patient_finding_classification.py +17 -9
- endoreg_db/serializers/patient_finding/patient_finding_detail.py +26 -17
- endoreg_db/serializers/patient_finding/patient_finding_intervention.py +7 -5
- endoreg_db/serializers/patient_finding/patient_finding_list.py +10 -11
- endoreg_db/serializers/patient_finding/patient_finding_write.py +36 -27
- endoreg_db/serializers/pdf/__init__.py +1 -3
- endoreg_db/serializers/requirements/requirement_schema.py +1 -6
- endoreg_db/serializers/sensitive_meta_serializer.py +100 -81
- endoreg_db/serializers/video/__init__.py +2 -2
- endoreg_db/serializers/video/{segmentation.py → video_file.py} +66 -47
- endoreg_db/serializers/video/video_file_brief.py +6 -2
- endoreg_db/serializers/video/video_file_detail.py +36 -23
- endoreg_db/serializers/video/video_file_list.py +4 -2
- endoreg_db/serializers/video/video_processing_history.py +54 -50
- endoreg_db/services/__init__.py +1 -1
- endoreg_db/services/anonymization.py +2 -2
- endoreg_db/services/examination_evaluation.py +40 -17
- endoreg_db/services/model_meta_from_hf.py +76 -0
- endoreg_db/services/polling_coordinator.py +101 -70
- endoreg_db/services/pseudonym_service.py +27 -22
- endoreg_db/services/report_import.py +6 -3
- endoreg_db/services/segment_sync.py +75 -59
- endoreg_db/services/video_import.py +6 -7
- endoreg_db/urls/__init__.py +2 -2
- endoreg_db/urls/ai.py +7 -25
- endoreg_db/urls/anonymization.py +61 -15
- endoreg_db/urls/auth.py +4 -4
- endoreg_db/urls/classification.py +4 -9
- endoreg_db/urls/examination.py +27 -18
- endoreg_db/urls/media.py +27 -34
- endoreg_db/urls/patient.py +11 -7
- endoreg_db/urls/requirements.py +3 -1
- endoreg_db/urls/root_urls.py +2 -3
- endoreg_db/urls/stats.py +24 -16
- endoreg_db/urls/upload.py +3 -11
- endoreg_db/utils/__init__.py +14 -15
- endoreg_db/utils/ai/__init__.py +1 -1
- endoreg_db/utils/ai/data_loader_for_model_input.py +262 -0
- endoreg_db/utils/ai/data_loader_for_model_training.py +262 -0
- endoreg_db/utils/ai/get.py +2 -1
- endoreg_db/utils/ai/inference_dataset.py +14 -15
- endoreg_db/utils/ai/model_training/config.py +117 -0
- endoreg_db/utils/ai/model_training/dataset.py +74 -0
- endoreg_db/utils/ai/model_training/losses.py +68 -0
- endoreg_db/utils/ai/model_training/metrics.py +78 -0
- endoreg_db/utils/ai/model_training/model_backbones.py +155 -0
- endoreg_db/utils/ai/model_training/model_gastronet_resnet.py +118 -0
- endoreg_db/utils/ai/model_training/trainer_gastronet_multilabel.py +771 -0
- endoreg_db/utils/ai/multilabel_classification_net.py +21 -6
- endoreg_db/utils/ai/predict.py +4 -4
- endoreg_db/utils/ai/preprocess.py +19 -11
- endoreg_db/utils/calc_duration_seconds.py +4 -4
- endoreg_db/utils/case_generator/lab_sample_factory.py +3 -4
- endoreg_db/utils/check_video_files.py +74 -47
- endoreg_db/utils/cropping.py +10 -9
- endoreg_db/utils/dataloader.py +11 -3
- endoreg_db/utils/dates.py +3 -4
- endoreg_db/utils/defaults/set_default_center.py +7 -6
- endoreg_db/utils/env.py +6 -2
- endoreg_db/utils/extract_specific_frames.py +24 -9
- endoreg_db/utils/file_operations.py +30 -18
- endoreg_db/utils/fix_video_path_direct.py +57 -41
- endoreg_db/utils/frame_anonymization_utils.py +157 -157
- endoreg_db/utils/hashs.py +3 -18
- endoreg_db/utils/links/requirement_link.py +96 -52
- endoreg_db/utils/ocr.py +30 -25
- endoreg_db/utils/operation_log.py +61 -0
- endoreg_db/utils/parse_and_generate_yaml.py +12 -13
- endoreg_db/utils/paths.py +6 -6
- endoreg_db/utils/permissions.py +40 -24
- endoreg_db/utils/pipelines/process_video_dir.py +50 -26
- endoreg_db/utils/product/sum_emissions.py +5 -3
- endoreg_db/utils/product/sum_weights.py +4 -2
- endoreg_db/utils/pydantic_models/__init__.py +3 -4
- endoreg_db/utils/requirement_operator_logic/_old/lab_value_operators.py +207 -107
- endoreg_db/utils/requirement_operator_logic/_old/model_evaluators.py +252 -65
- endoreg_db/utils/requirement_operator_logic/new_operator_logic.py +27 -10
- endoreg_db/utils/setup_config.py +21 -5
- endoreg_db/utils/storage.py +3 -1
- endoreg_db/utils/translation.py +19 -15
- endoreg_db/utils/uuid.py +1 -0
- endoreg_db/utils/validate_endo_roi.py +12 -4
- endoreg_db/utils/validate_subcategory_dict.py +26 -24
- endoreg_db/utils/validate_video_detailed.py +207 -149
- endoreg_db/utils/video/__init__.py +7 -3
- endoreg_db/utils/video/extract_frames.py +30 -18
- endoreg_db/utils/video/names.py +11 -6
- endoreg_db/utils/video/streaming_processor.py +175 -101
- endoreg_db/utils/video/video_splitter.py +30 -19
- endoreg_db/views/Frames_NICE_and_PARIS_classifications_views.py +59 -50
- endoreg_db/views/__init__.py +0 -20
- endoreg_db/views/anonymization/__init__.py +6 -2
- endoreg_db/views/anonymization/media_management.py +2 -6
- endoreg_db/views/anonymization/overview.py +34 -1
- endoreg_db/views/anonymization/validate.py +79 -18
- endoreg_db/views/auth/__init__.py +1 -1
- endoreg_db/views/auth/keycloak.py +16 -14
- endoreg_db/views/examination/__init__.py +12 -15
- endoreg_db/views/examination/examination.py +5 -5
- endoreg_db/views/examination/examination_manifest_cache.py +5 -5
- endoreg_db/views/examination/get_finding_classification_choices.py +8 -5
- endoreg_db/views/examination/get_finding_classifications.py +9 -7
- endoreg_db/views/examination/get_findings.py +8 -10
- endoreg_db/views/examination/get_instruments.py +3 -2
- endoreg_db/views/examination/get_interventions.py +1 -1
- endoreg_db/views/finding/__init__.py +2 -2
- endoreg_db/views/finding/finding.py +58 -54
- endoreg_db/views/finding/get_classifications.py +1 -1
- endoreg_db/views/finding/get_interventions.py +1 -1
- endoreg_db/views/finding_classification/__init__.py +5 -5
- endoreg_db/views/finding_classification/finding_classification.py +5 -6
- endoreg_db/views/finding_classification/get_classification_choices.py +3 -4
- endoreg_db/views/media/__init__.py +13 -13
- endoreg_db/views/media/pdf_media.py +9 -9
- endoreg_db/views/media/sensitive_metadata.py +10 -7
- endoreg_db/views/media/video_media.py +4 -4
- endoreg_db/views/meta/__init__.py +1 -1
- endoreg_db/views/meta/sensitive_meta_list.py +20 -22
- endoreg_db/views/meta/sensitive_meta_verification.py +14 -11
- endoreg_db/views/misc/__init__.py +6 -34
- endoreg_db/views/misc/center.py +2 -1
- endoreg_db/views/misc/csrf.py +2 -1
- endoreg_db/views/misc/gender.py +2 -1
- endoreg_db/views/misc/stats.py +141 -106
- endoreg_db/views/patient/__init__.py +1 -3
- endoreg_db/views/patient/patient.py +141 -99
- endoreg_db/views/patient_examination/__init__.py +5 -5
- endoreg_db/views/patient_examination/patient_examination.py +43 -42
- endoreg_db/views/patient_examination/patient_examination_create.py +10 -15
- endoreg_db/views/patient_examination/patient_examination_detail.py +12 -15
- endoreg_db/views/patient_examination/patient_examination_list.py +21 -17
- endoreg_db/views/patient_examination/video.py +114 -80
- endoreg_db/views/patient_finding/__init__.py +1 -1
- endoreg_db/views/patient_finding/patient_finding.py +17 -10
- endoreg_db/views/patient_finding/patient_finding_optimized.py +127 -95
- endoreg_db/views/patient_finding_classification/__init__.py +1 -1
- endoreg_db/views/patient_finding_classification/pfc_create.py +35 -27
- endoreg_db/views/report/reimport.py +1 -1
- endoreg_db/views/report/report_stream.py +5 -8
- endoreg_db/views/requirement/__init__.py +2 -1
- endoreg_db/views/requirement/evaluate.py +7 -9
- endoreg_db/views/requirement/lookup.py +2 -3
- endoreg_db/views/requirement/lookup_store.py +0 -1
- endoreg_db/views/requirement/requirement_utils.py +2 -4
- endoreg_db/views/stats/__init__.py +4 -4
- endoreg_db/views/stats/stats_views.py +152 -115
- endoreg_db/views/video/__init__.py +18 -27
- endoreg_db/views/{ai → video/ai}/__init__.py +2 -2
- endoreg_db/views/{ai → video/ai}/label.py +20 -16
- endoreg_db/views/video/correction.py +5 -6
- endoreg_db/views/video/reimport.py +134 -99
- endoreg_db/views/video/segments_crud.py +134 -44
- endoreg_db/views/video/video_apply_mask.py +13 -12
- endoreg_db/views/video/video_correction.py +2 -1
- endoreg_db/views/video/video_download_processed.py +15 -15
- endoreg_db/views/video/video_meta_stats.py +7 -6
- endoreg_db/views/video/video_processing_history.py +3 -2
- endoreg_db/views/video/video_remove_frames.py +13 -12
- endoreg_db/views/video/video_stream.py +110 -82
- {endoreg_db-0.8.9.2.dist-info → endoreg_db-0.8.9.10.dist-info}/METADATA +9 -3
- {endoreg_db-0.8.9.2.dist-info → endoreg_db-0.8.9.10.dist-info}/RECORD +434 -431
- endoreg_db/management/commands/import_fallback_video.py +0 -203
- endoreg_db/management/commands/import_video.py +0 -422
- endoreg_db/management/commands/import_video_with_classification.py +0 -367
- endoreg_db/models/media/processing_history/processing_history.py +0 -96
- endoreg_db/serializers/label/__init__.py +0 -7
- endoreg_db/serializers/label_video_segment/_lvs_create.py +0 -149
- endoreg_db/serializers/label_video_segment/_lvs_update.py +0 -138
- endoreg_db/serializers/label_video_segment/_lvs_validate.py +0 -149
- endoreg_db/serializers/label_video_segment/label_video_segment_annotation.py +0 -99
- endoreg_db/serializers/label_video_segment/label_video_segment_update.py +0 -163
- endoreg_db/services/__old/pdf_import.py +0 -1487
- endoreg_db/services/__old/video_import.py +0 -1306
- endoreg_db/tasks/upload_tasks.py +0 -216
- endoreg_db/tasks/video_ingest.py +0 -161
- endoreg_db/tasks/video_processing_tasks.py +0 -327
- endoreg_db/views/misc/translation.py +0 -182
- {endoreg_db-0.8.9.2.dist-info → endoreg_db-0.8.9.10.dist-info}/WHEEL +0 -0
- {endoreg_db-0.8.9.2.dist-info → endoreg_db-0.8.9.10.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
endoreg_db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
endoreg_db/admin.py,sha256=
|
|
2
|
+
endoreg_db/admin.py,sha256=rz5P5hopYAm-AEtRV8VZcPnkshTX-hUoeJPDYSMW6zU,3772
|
|
3
3
|
endoreg_db/api_urls.py,sha256=k-JjENY5Rghz-xCXEp2fTcmVzoWUzuKRmdPK1B_LPLY,183
|
|
4
|
-
endoreg_db/apps.py,sha256=
|
|
5
|
-
endoreg_db/exceptions.py,sha256=
|
|
6
|
-
endoreg_db/logger_conf.py,sha256=
|
|
7
|
-
endoreg_db/root_urls.py,sha256=
|
|
4
|
+
endoreg_db/apps.py,sha256=DrO_oV1B2sJpmukrk3WnoT9N_stQGv8Cp7JUOkwpRlc,432
|
|
5
|
+
endoreg_db/exceptions.py,sha256=faiO4ca8UTNizF2DCp73NEM9BB2xLJEpmVPrmXIKg08,566
|
|
6
|
+
endoreg_db/logger_conf.py,sha256=Y5a_BZnkx7Ai_yDI6M7mavjNphJ0JJd_wF9FDv_8rKI,5708
|
|
7
|
+
endoreg_db/root_urls.py,sha256=ph6RjwA62TkbX_Loe-3wyBmppVzf2wt0sZIal_Vz2QE,1005
|
|
8
8
|
endoreg_db/urls.py,sha256=Bog2gEOtMKPiHruNKH7aOC7ggfg-E28dl94qhEDE7jg,300
|
|
9
9
|
endoreg_db/api/serializers/finding_descriptions.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
10
|
endoreg_db/api/views/finding_descriptions.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
11
|
endoreg_db/assets/dummy_model.ckpt,sha256=NAw5JDdrpV5bpZgdHXhmlQeo6TocKwQ_LQRzmqIm2Dw,21
|
|
12
|
-
endoreg_db/authz/auth.py,sha256=
|
|
13
|
-
endoreg_db/authz/backends.py,sha256=
|
|
14
|
-
endoreg_db/authz/middleware.py,sha256=
|
|
15
|
-
endoreg_db/authz/permissions.py,sha256=
|
|
16
|
-
endoreg_db/authz/policy.py,sha256=
|
|
17
|
-
endoreg_db/authz/views_auth.py,sha256=
|
|
18
|
-
endoreg_db/authz/management/commands/list_routes.py,sha256=
|
|
12
|
+
endoreg_db/authz/auth.py,sha256=X8ExiUvfHbzXam6ViGGW3wVgJh1SobGrtyct-YQX0Yw,2501
|
|
13
|
+
endoreg_db/authz/backends.py,sha256=JJ5SH9xiA9_DgGmcCRGT9jMRfPWQmDactXIWcy9ymHI,6688
|
|
14
|
+
endoreg_db/authz/middleware.py,sha256=9ShOiUWwm5mlayJv-PuAaOq8ur7pcmfuiRWT7yc55zk,3701
|
|
15
|
+
endoreg_db/authz/permissions.py,sha256=XuK6XLoKybV2D5Yqu6Br35H74MN-ZfP_hUqdiavFhKQ,5017
|
|
16
|
+
endoreg_db/authz/policy.py,sha256=9ugTfEFqotUYnrLhW6N8PYMZ1XzOQDvGAzAr8P9_YwY,6934
|
|
17
|
+
endoreg_db/authz/views_auth.py,sha256=DcfUFyO0TCicTXa52PD3qoYw79dC08qk_cGQWA-e0w0,2266
|
|
18
|
+
endoreg_db/authz/management/commands/list_routes.py,sha256=8RdW0CLimoSxV1Iy3x74PN2eRY1AH4XChhoR2gYPya0,624
|
|
19
19
|
endoreg_db/codemods/readme.md,sha256=mVOAevESOuN0WSTMI3tJPbuuGE3ROASp9s21bpf-LOs,3958
|
|
20
|
-
endoreg_db/codemods/rename_datetime_fields.py,sha256=
|
|
20
|
+
endoreg_db/codemods/rename_datetime_fields.py,sha256=aMjT2If3nJeCirh46WooKPu5bEwfTJeyufR-DaAPHLs,2917
|
|
21
21
|
endoreg_db/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
22
|
endoreg_db/config/env.py,sha256=9uMRrD9BWZnlKeUqqidVx0JRuD5SdxwGpRf0kv0uaA4,2690
|
|
23
23
|
endoreg_db/data/__init__.py,sha256=wjJs6ISilF5AE6qWIhecREIJQrTWGQzVaq7m7cnJk2w,5443
|
|
@@ -226,98 +226,98 @@ endoreg_db/data/unit/volume.yaml,sha256=mkrWixjRJJ0Ob2s9jwU69wW6u4QqdOcw12BWqhf6
|
|
|
226
226
|
endoreg_db/data/unit/weight.yaml,sha256=o1PvHk-4GhKxstCozhDYQNMMYcTXvwmqx4hlQXO2U8o,747
|
|
227
227
|
endoreg_db/data/waste/data.yaml,sha256=A8dUOdzsxhICHViXmbcLtOmtqkBX_CkZaRNo-ePAyEA,245
|
|
228
228
|
endoreg_db/factories/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
229
|
-
endoreg_db/forms/__init__.py,sha256=
|
|
230
|
-
endoreg_db/forms/examination_form.py,sha256=
|
|
231
|
-
endoreg_db/forms/patient_finding_intervention_form.py,sha256=
|
|
232
|
-
endoreg_db/forms/patient_form.py,sha256=
|
|
233
|
-
endoreg_db/forms/unit.py,sha256=
|
|
234
|
-
endoreg_db/forms/questionnaires/__init__.py,sha256=
|
|
229
|
+
endoreg_db/forms/__init__.py,sha256=6USnn-GBPGwW-dAs29SDY-oJ5dXfMNfgkJu9wvM-FyQ,129
|
|
230
|
+
endoreg_db/forms/examination_form.py,sha256=j58jYkeN0naQSWG1nVtYAS2rHF9vZ4GqiYhIUW0MOzY,390
|
|
231
|
+
endoreg_db/forms/patient_finding_intervention_form.py,sha256=e8s9IZz0BspucU8ZFWh1FFkyDHQnOAE5iFauE_lRaUU,1256
|
|
232
|
+
endoreg_db/forms/patient_form.py,sha256=FZLDNaA-7ZWl5_zgFsF1cL_z2KlF6eoHc6kxxUXDOfc,687
|
|
233
|
+
endoreg_db/forms/unit.py,sha256=7U3Hc897n2ED_tZNF5Y9Fk1B1g5f4P4m1rOwZnqeGew,118
|
|
234
|
+
endoreg_db/forms/questionnaires/__init__.py,sha256=85dCrCMQHfXMIxTaIb8j8XivYNVoVkhQpo8UjsyPNU8,78
|
|
235
235
|
endoreg_db/forms/questionnaires/tto_questionnaire.py,sha256=4QVcMONQIKDYRTbMw-9qSeM8KbiD8vIeBsol7NFyt1Y,928
|
|
236
|
-
endoreg_db/forms/settings/__init__.py,sha256=
|
|
236
|
+
endoreg_db/forms/settings/__init__.py,sha256=49K3LnOAekFHM2wHrl7NZ5VaOH5vRGRwJyO_KrF6_Zs,282
|
|
237
237
|
endoreg_db/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
238
|
-
endoreg_db/helpers/count_db.py,sha256=
|
|
238
|
+
endoreg_db/helpers/count_db.py,sha256=wKqwRFH4O-ZDZjAKbRO80obPBCcAEeTT1PKdh9H38ls,1913
|
|
239
239
|
endoreg_db/helpers/data_loader.py,sha256=gAnfAemBrJFWtGFbmB-2P9mhuPmLybIp76vyTZDH8W4,6586
|
|
240
|
-
endoreg_db/helpers/default_objects.py,sha256=
|
|
241
|
-
endoreg_db/helpers/download_segmentation_model.py,sha256=
|
|
242
|
-
endoreg_db/helpers/interact.py,sha256=
|
|
243
|
-
endoreg_db/helpers/test_video_helper.py,sha256=
|
|
244
|
-
endoreg_db/import_files/__init__.py,sha256=
|
|
240
|
+
endoreg_db/helpers/default_objects.py,sha256=atR6UHzq51_ja1N5E-5LobJkX1m22KKWPLc8wVYMPKM,14243
|
|
241
|
+
endoreg_db/helpers/download_segmentation_model.py,sha256=YVCRJjTnew0TmCFjc_-HnyAtdQ02TiCjowVVpE7HIT4,1048
|
|
242
|
+
endoreg_db/helpers/interact.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
243
|
+
endoreg_db/helpers/test_video_helper.py,sha256=m7iz6EE8QKtTuuFIsynd8vWcocm_ryBsh-s4Aqp23TI,4793
|
|
244
|
+
endoreg_db/import_files/__init__.py,sha256=gHhb1GZSax9jkn4VpoVzZz-me1q9t2_dGXuSWhGLIeE,850
|
|
245
245
|
endoreg_db/import_files/import_service.md,sha256=TjFL7XfhryOIJbrbCtQSk8-iMUgR5TqcftxDdimvVmU,1769
|
|
246
|
-
endoreg_db/import_files/report_import_service.py,sha256=
|
|
247
|
-
endoreg_db/import_files/video_import_service.py,sha256=
|
|
248
|
-
endoreg_db/import_files/context/__init__.py,sha256=
|
|
249
|
-
endoreg_db/import_files/context/default_sensitive_meta.py,sha256=
|
|
250
|
-
endoreg_db/import_files/context/ensure_center.py,sha256
|
|
251
|
-
endoreg_db/import_files/context/file_lock.py,sha256=
|
|
252
|
-
endoreg_db/import_files/context/import_context.py,sha256=
|
|
253
|
-
endoreg_db/import_files/context/validate_directories.py,sha256=
|
|
246
|
+
endoreg_db/import_files/report_import_service.py,sha256=8eeJIcDQzBYFHn7zE8g3YDoFp3ye34ToLiovarVo_OY,5621
|
|
247
|
+
endoreg_db/import_files/video_import_service.py,sha256=yNzAvxwslmML4znOS5x5hPa8B1S89ARSSqKDZTNTSvQ,5569
|
|
248
|
+
endoreg_db/import_files/context/__init__.py,sha256=c9zqqqIFqY_FXSAldNtax9Mx7aZ3coRHtpomSkvhWBA,128
|
|
249
|
+
endoreg_db/import_files/context/default_sensitive_meta.py,sha256=DEJkX9wrz4Dij9-wcROMGoI8sgFDO12DogvxSyVzOZw,2850
|
|
250
|
+
endoreg_db/import_files/context/ensure_center.py,sha256=RdhmFw24CGmmjtOcRP6S24t-MDd8HhBv2YpTyipTzJE,587
|
|
251
|
+
endoreg_db/import_files/context/file_lock.py,sha256=V5JDMjEfyV7r0Wv-5WgTSGWYXlchv3GplvISMkBa_Hw,1987
|
|
252
|
+
endoreg_db/import_files/context/import_context.py,sha256=evqh0r6FIcUcXOWFBEqo3hxmoT5mapeKRpbV8gKWVo0,1331
|
|
253
|
+
endoreg_db/import_files/context/validate_directories.py,sha256=Ml72x8boDhq9Qh-6zBwxWWg00vBLcycXekr9cwyOSkU,1345
|
|
254
254
|
endoreg_db/import_files/file_storage/__init__.py,sha256=3YkOalkE6R5Y84dPOzhjJuGqUkFDA9K0iGa_Pqzjp9I,313
|
|
255
|
-
endoreg_db/import_files/file_storage/create_report_file.py,sha256=
|
|
256
|
-
endoreg_db/import_files/file_storage/create_video_file.py,sha256=
|
|
257
|
-
endoreg_db/import_files/file_storage/sensitive_meta_storage.py,sha256=
|
|
258
|
-
endoreg_db/import_files/file_storage/state_management.py,sha256=
|
|
259
|
-
endoreg_db/import_files/file_storage/storage.py,sha256=
|
|
255
|
+
endoreg_db/import_files/file_storage/create_report_file.py,sha256=tPdi2HgCBMCH8y2nG5kHWb2gjIxLXibXXqRcSmbAyVs,3465
|
|
256
|
+
endoreg_db/import_files/file_storage/create_video_file.py,sha256=bGX60Iimoi0wRolpBKGy3kOYv-gq8mnwoZC7Zj6SA4Q,3646
|
|
257
|
+
endoreg_db/import_files/file_storage/sensitive_meta_storage.py,sha256=OprTMSPIFn3IOMj48TnUtNsKktdW2VcEgZNQ88qSQG8,1451
|
|
258
|
+
endoreg_db/import_files/file_storage/state_management.py,sha256=DWWz3PdFhpvmVyYs86qJMJI38THyrbXcy9YfmnVjzvc,15791
|
|
259
|
+
endoreg_db/import_files/file_storage/storage.py,sha256=_uzxITvQfTAy2V54s6_KwjK-Fx1XQPy256ZxhYeF1qA,1098
|
|
260
260
|
endoreg_db/import_files/processing/__init__.py,sha256=p4R0j6aC28TNFeboyum2R9pF9P98nvMk-CQsy_0yWtA,220
|
|
261
|
-
endoreg_db/import_files/processing/sensitive_meta_adapter.py,sha256=
|
|
262
|
-
endoreg_db/import_files/processing/report_processing/report_anonymization.py,sha256=
|
|
263
|
-
endoreg_db/import_files/processing/video_processing/video_anonymization.py,sha256=
|
|
261
|
+
endoreg_db/import_files/processing/sensitive_meta_adapter.py,sha256=JM_joWh3g8f3Ar2KezSyMMfQZi0QtJK3bOc7QrtXBLc,1754
|
|
262
|
+
endoreg_db/import_files/processing/report_processing/report_anonymization.py,sha256=nFYRQqosKvWEkpMPC_cB4msMNvsQ4dhAyUA9nGqK71Q,3449
|
|
263
|
+
endoreg_db/import_files/processing/video_processing/video_anonymization.py,sha256=zkcW3zUV-0lp8IFRAzqips1k0sBJvPS9YjP8uNjdHa4,4026
|
|
264
264
|
endoreg_db/import_files/pseudonymization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
265
265
|
endoreg_db/import_files/pseudonymization/fake.py,sha256=UAObfuNT4YrUHZX8E53RLp7D3X3bpDs6f0UdoKh-8gE,1347
|
|
266
|
-
endoreg_db/import_files/pseudonymization/k_anonymity.py,sha256=
|
|
267
|
-
endoreg_db/import_files/pseudonymization/k_pseudonymity.py,sha256=
|
|
266
|
+
endoreg_db/import_files/pseudonymization/k_anonymity.py,sha256=NxHlvbwUYtmk_qs9d4vlcO6T5RKtC3FdJtvSs2FMKFQ,5533
|
|
267
|
+
endoreg_db/import_files/pseudonymization/k_pseudonymity.py,sha256=pKqWlti0tA6wUCyN1vLU4wq_snlv0O34ACaMvcWiO7Q,4584
|
|
268
268
|
endoreg_db/import_files/pseudonymization/pseudonymize.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
269
|
-
endoreg_db/management/__init__.py,sha256=
|
|
270
|
-
endoreg_db/management/commands/__init__.py,sha256=
|
|
269
|
+
endoreg_db/management/__init__.py,sha256=1qi5wv2KVLIKoGVzItrB78D8xrbf3ruwO3_kGZ7bLh4,30
|
|
270
|
+
endoreg_db/management/commands/__init__.py,sha256=1pri3qN5PLFIRSwxLkZJ7Bc4W4UyiKBZCcJjqy1IUr0,22
|
|
271
271
|
endoreg_db/management/commands/anonymize_video.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
272
|
-
endoreg_db/management/commands/check_auth.py,sha256=
|
|
273
|
-
endoreg_db/management/commands/create_model_meta_from_huggingface.py,sha256=
|
|
274
|
-
endoreg_db/management/commands/create_multilabel_model_meta.py,sha256=
|
|
275
|
-
endoreg_db/management/commands/fix_missing_patient_data.py,sha256=
|
|
276
|
-
endoreg_db/management/commands/fix_video_paths.py,sha256=
|
|
277
|
-
endoreg_db/management/commands/
|
|
278
|
-
endoreg_db/management/commands/
|
|
279
|
-
endoreg_db/management/commands/
|
|
280
|
-
endoreg_db/management/commands/
|
|
281
|
-
endoreg_db/management/commands/list_routes.py,sha256=7u1P5CbLZXolRfegSPj3sPt_7IWoQJBf_Sc-pr-IrHs,622
|
|
282
|
-
endoreg_db/management/commands/load_ai_model_data.py,sha256=9CWiHQ5fs6zWZCIvfRn3qTmvQXBb_IQwEXBln0sN-gc,2806
|
|
283
|
-
endoreg_db/management/commands/load_ai_model_label_data.py,sha256=eBl9xoOhh41CeRtxGxS8jHHh2U8U6mg12i_Domc_wv4,2062
|
|
272
|
+
endoreg_db/management/commands/check_auth.py,sha256=76S3Dpayp6-_Uy2_XuICEMr6FjlIsTtIxCPTzVDUMMw,5348
|
|
273
|
+
endoreg_db/management/commands/create_model_meta_from_huggingface.py,sha256=LtzFdNuE2JINLGHlwTnGZEgesVtuDZezVVacUqZ7ynI,6309
|
|
274
|
+
endoreg_db/management/commands/create_multilabel_model_meta.py,sha256=PC0o-gJfVmYU3xKy5mSAOkNDynXlT6YA_dEfi-_u_Kc,15339
|
|
275
|
+
endoreg_db/management/commands/fix_missing_patient_data.py,sha256=7Lt2u5eWj6Dld3afJzP2DCdgLwIsQpHhHwuW463D8mg,8171
|
|
276
|
+
endoreg_db/management/commands/fix_video_paths.py,sha256=hBGi4wUJQvMYGqIZbOCLJ1o4Z1rPRSM6aT9wnHkUNH8,7423
|
|
277
|
+
endoreg_db/management/commands/import_report.py,sha256=a6MapJRvFrhGhqIQEHWCsyNKZtrKIPVvmg0sX32APM8,14426
|
|
278
|
+
endoreg_db/management/commands/list_routes.py,sha256=8RdW0CLimoSxV1Iy3x74PN2eRY1AH4XChhoR2gYPya0,624
|
|
279
|
+
endoreg_db/management/commands/load_ai_model_data.py,sha256=608o_Nt-fCKBPOSB5gE0mH_bOxn4m0oZoFJZwzGRK-o,2876
|
|
280
|
+
endoreg_db/management/commands/load_ai_model_label_data.py,sha256=kDjD46wAy3zvva-mKeLIUf0EieSfs329wy_33XEa2rY,2029
|
|
284
281
|
endoreg_db/management/commands/load_base_db_data.py,sha256=PzVrHQpfm5Fs-nEd1sXNpe-UcOGFODQlXCz_-jVTows,2874
|
|
285
|
-
endoreg_db/management/commands/load_center_data.py,sha256=
|
|
282
|
+
endoreg_db/management/commands/load_center_data.py,sha256=l4FmyduYmo23PXKDJ7GE2SY8IIpyrPjXlotNHzv0Kdg,2402
|
|
286
283
|
endoreg_db/management/commands/load_contraindication_data.py,sha256=TBmeT4hUTEwx3ArzRl3eik6JM6pvj4j_dGH4Y_BTTE0,1167
|
|
287
284
|
endoreg_db/management/commands/load_disease_classification_choices_data.py,sha256=ZsrLWKbb-M1rQggsGG3EeAwKlc7X7V54afrBx-b4hgY,1271
|
|
288
285
|
endoreg_db/management/commands/load_disease_classification_data.py,sha256=ap41QQsDzd7XON-8y33OAdzo4gZoPbuCsvMTD_YkcYk,1215
|
|
289
286
|
endoreg_db/management/commands/load_disease_data.py,sha256=ymCiRh3HWNcYkc5PcBDG2GFQcNMtAtNjpRHxKtwA7zk,1985
|
|
290
|
-
endoreg_db/management/commands/load_distribution_data.py,sha256=
|
|
291
|
-
endoreg_db/management/commands/load_endoscope_data.py,sha256=
|
|
287
|
+
endoreg_db/management/commands/load_distribution_data.py,sha256=7c9atTcslDmqp3Vlx-IAJvj0xI1K8kW9A4iDzQB0f4A,2081
|
|
288
|
+
endoreg_db/management/commands/load_endoscope_data.py,sha256=m9YRdhYfObPiHhDWDlqkg3_QhAudIPfaajsz9w-w-Tg,1814
|
|
292
289
|
endoreg_db/management/commands/load_event_data.py,sha256=J4tzN7v2v0LU3qxjMIyNMYqYxKDFpP0TuOtsnw6oOWw,1134
|
|
293
|
-
endoreg_db/management/commands/load_examination_data.py,sha256=
|
|
290
|
+
endoreg_db/management/commands/load_examination_data.py,sha256=Gjn9sWsjpV38fpp2ITLTObUUn3kRZgc1SF-EVGXTGak,2137
|
|
294
291
|
endoreg_db/management/commands/load_examination_indication_data.py,sha256=7I25p1_UEeePTVuJYnU_6xgNbP3vXSKPp1uxB9yT7Lk,2904
|
|
295
|
-
endoreg_db/management/commands/load_finding_data.py,sha256=
|
|
296
|
-
endoreg_db/management/commands/load_gender_data.py,sha256=
|
|
297
|
-
endoreg_db/management/commands/load_green_endoscopy_wuerzburg_data.py,sha256=
|
|
298
|
-
endoreg_db/management/commands/load_information_source.py,sha256=
|
|
299
|
-
endoreg_db/management/commands/load_lab_value_data.py,sha256=
|
|
292
|
+
endoreg_db/management/commands/load_finding_data.py,sha256=9nmWQAYNf8z-jajVpanXkfb0DSh2vla4kPexzPwo6Hg,3411
|
|
293
|
+
endoreg_db/management/commands/load_gender_data.py,sha256=Iav0M29psScD3VLs7rP41PbeJ-fj5FvLh6a5IOr4O1A,1027
|
|
294
|
+
endoreg_db/management/commands/load_green_endoscopy_wuerzburg_data.py,sha256=i3wjpKZMgPhdUPNJ9mUZoxhiaUB_kSqWEf3WqxXDUe0,4380
|
|
295
|
+
endoreg_db/management/commands/load_information_source.py,sha256=dgKeTAHhwx4g6MxHR5NV-yyNF2D7-t-VDRSCeNp3Yu8,1640
|
|
296
|
+
endoreg_db/management/commands/load_lab_value_data.py,sha256=ZxRUybLLexw6SBnwn1DZb2-WVKzGjifSsY3Hbd9eSNY,1655
|
|
297
|
+
endoreg_db/management/commands/load_legacy_data.py,sha256=xNAB7Kmll_eHv_PTg8kfbLngUlN70rThqnuq-Niuj-w,11643
|
|
300
298
|
endoreg_db/management/commands/load_medication_data.py,sha256=jAQxysM8sKhQmGCVEP7VGm4vrvaxkemeEGQgqGhJpiU,3308
|
|
301
|
-
endoreg_db/management/commands/load_name_data.py,sha256=
|
|
299
|
+
endoreg_db/management/commands/load_name_data.py,sha256=nl6Uwtotr8JddWjw6KzMBnSzcyKEkff8dmnWIj-pTDE,1295
|
|
302
300
|
endoreg_db/management/commands/load_organ_data.py,sha256=Ybrbo3CBh_AMWdR9sooqdqaneH6SdNgBjtXsssNvZSQ,1127
|
|
303
|
-
endoreg_db/management/commands/load_pdf_type_data.py,sha256=
|
|
304
|
-
endoreg_db/management/commands/load_profession_data.py,sha256=
|
|
301
|
+
endoreg_db/management/commands/load_pdf_type_data.py,sha256=vyZJ3X0YHpI00Sp--1AecR5q21jYNzVYFgZmIi3LAmM,1724
|
|
302
|
+
endoreg_db/management/commands/load_profession_data.py,sha256=qW2MLq6yfARrho_c6JgwwOFwpwQVcmjckf0XvripE1g,1199
|
|
305
303
|
endoreg_db/management/commands/load_qualification_data.py,sha256=3E7B2gkDlLWlqYvH37MqbVDQRtC2g7dT11WNQB5qmOU,1922
|
|
306
|
-
endoreg_db/management/commands/load_report_reader_flag_data.py,sha256=
|
|
307
|
-
endoreg_db/management/commands/load_requirement_data.py,sha256=
|
|
304
|
+
endoreg_db/management/commands/load_report_reader_flag_data.py,sha256=m4nPHz0kDk7I65a6TDnBW2Y3b6Dl7p-Cc4ENF9F4xrc,1227
|
|
305
|
+
endoreg_db/management/commands/load_requirement_data.py,sha256=FANpKwlDN8CVDH8MeNYu5hWpPuqvfpkSY6DwkKlczvI,6898
|
|
308
306
|
endoreg_db/management/commands/load_requirement_set_tags.py,sha256=zi8GN-zz8lzfzHv5u9u2D6a6HSprZbBZ_vcwAGPuNhI,3318
|
|
309
307
|
endoreg_db/management/commands/load_risk_data.py,sha256=Gy45jchE0DATm_EiQbUdCOR1FKKfs4DbTVwvJ2xKffQ,2045
|
|
310
308
|
endoreg_db/management/commands/load_shift_data.py,sha256=1lda_LKzDMmf7o6JnyYf3sOWSMWrgn5-Drfa9uUnzN4,1951
|
|
311
309
|
endoreg_db/management/commands/load_tag_data.py,sha256=StnPy1oxFXVumckGyUVogZ_eLzdM29_lUvqh2UxD7w0,1877
|
|
312
|
-
endoreg_db/management/commands/load_unit_data.py,sha256=
|
|
313
|
-
endoreg_db/management/commands/load_user_groups.py,sha256=
|
|
314
|
-
endoreg_db/management/commands/
|
|
315
|
-
endoreg_db/management/commands/
|
|
310
|
+
endoreg_db/management/commands/load_unit_data.py,sha256=QFSzD4Teegb9zHBAGMVtIPgfjIr3zS5dULz9cAwrtpM,1175
|
|
311
|
+
endoreg_db/management/commands/load_user_groups.py,sha256=1rxXk5oCL3XU9ljUZfA2oPBxIEYfIEzHv3qlN5xB9QE,931
|
|
312
|
+
endoreg_db/management/commands/model_input.py,sha256=RS4Yj5xeJjGYkfUi0AE1eGi-2ouRrm2dLe9NP7EPd7I,5646
|
|
313
|
+
endoreg_db/management/commands/register_ai_model.py,sha256=JtTZmSCbVwxy4jsUk0jls6J71cIj3i-wNetjLzxi2sY,2608
|
|
314
|
+
endoreg_db/management/commands/setup_endoreg_db.py,sha256=D3gxUz3z049oBcLF30hCljrMpyNjsv289BS3Zg5E0lc,19622
|
|
316
315
|
endoreg_db/management/commands/start_filewatcher.py,sha256=Qd2s1kRHvLSiO3CoDjYgD2yb16zCPjtDfQd8e63VXXQ,4090
|
|
317
|
-
endoreg_db/management/commands/storage_management.py,sha256=
|
|
318
|
-
endoreg_db/management/commands/summarize_db_content.py,sha256=
|
|
319
|
-
endoreg_db/management/commands/
|
|
320
|
-
endoreg_db/management/commands/
|
|
316
|
+
endoreg_db/management/commands/storage_management.py,sha256=wP02CyKExqnQBFdk-oXAsKpmvgPQ2JtuR8elSekg2Lc,22496
|
|
317
|
+
endoreg_db/management/commands/summarize_db_content.py,sha256=vKu1ROxpsmiUgum2snZEhTLW1VRyAdaEvaQ3MbvUM_A,12833
|
|
318
|
+
endoreg_db/management/commands/train_image_multilabel_model.py,sha256=dzmkZLfqKfskyc2skSwNOqLviJVOf9wnCpiY4reQDuY,5788
|
|
319
|
+
endoreg_db/management/commands/validate_video_files.py,sha256=2Nse4TwLmcCgnSnRcUX3NcyYereZKA8R4msfjFRAT9k,6842
|
|
320
|
+
endoreg_db/management/commands/video_validation.py,sha256=4MBDhpY9ro6XN1sz4QsNnE8ppxzJ9gkiZZCgoAB7FJI,650
|
|
321
321
|
endoreg_db/mermaid/Overall_flow_patient_finding_intervention.md,sha256=qNOXAn04flFW1m3a4hN3Bb1Vd7121Wo-sZ6MeaR0Lqo,399
|
|
322
322
|
endoreg_db/mermaid/anonymized_image_annotation.md,sha256=F0MIJB2Jsj38M1bu8-0d8wWPpb53rrp28RCGTsH3VJ4,744
|
|
323
323
|
endoreg_db/mermaid/binary_classification_annotation.md,sha256=lpM_VwcUqD37qcwGJfWwkHPkF9lWAEhpOurlrsSM97Q,988
|
|
@@ -329,62 +329,65 @@ endoreg_db/mermaid/interventions.md,sha256=jWFB5fHr-bbOplk91VdPrSrS24EUZQKl8gQi_
|
|
|
329
329
|
endoreg_db/mermaid/morphology.md,sha256=9_--hWVwXW1UB1E9od9yddyUFJonm3eCGr986nwpQpY,360
|
|
330
330
|
endoreg_db/mermaid/patient_creation.md,sha256=P0U50Pejxn_AATzHTJ3U9iydoEVSnpRjGEUOTRNJrGs,384
|
|
331
331
|
endoreg_db/mermaid/video_segmentation_annotation.md,sha256=oouo5htDabP8m-W86C6aWXyIxi1A7zAoPqa3o5xr354,536
|
|
332
|
-
endoreg_db/migrations/0001_initial.py,sha256=
|
|
332
|
+
endoreg_db/migrations/0001_initial.py,sha256=KoYg3Bp2zVM01O3a902lswNsiU5DcnwYMExFZ2GJ6rg,126534
|
|
333
333
|
endoreg_db/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
334
|
-
endoreg_db/models/__init__.py,sha256=
|
|
334
|
+
endoreg_db/models/__init__.py,sha256=gApMechLGnwOrL9uB727mjbnnW882GIzd-WQVyQYsCU,6675
|
|
335
|
+
endoreg_db/models/operation_log.py,sha256=eA67RmhoKK4dfKk33oJUxuTPQ33le3hztM0tXqkE7T8,1841
|
|
335
336
|
endoreg_db/models/upload_job.py,sha256=jWG-FuKp9yllUKrw86C-jPQyhaaLxib-V-i5TTWvKvw,3089
|
|
336
|
-
endoreg_db/models/utils.py,sha256=
|
|
337
|
+
endoreg_db/models/utils.py,sha256=qsCsp381tDPStuO6jMRJjj8evlfSRQvNdRUYbyafhQo,4473
|
|
337
338
|
endoreg_db/models/administration/__init__.py,sha256=BSWkeFPLgtNhUw428Qr5jesv_UlEuoZuPCma3GYmi8c,1443
|
|
338
339
|
endoreg_db/models/administration/ai/__init__.py,sha256=AYnrzvWkLYsySnlryfZ35_wgJ5egIdIpgmxW3DzO4OY,168
|
|
339
|
-
endoreg_db/models/administration/ai/active_model.py,sha256=
|
|
340
|
-
endoreg_db/models/administration/ai/ai_model.py,sha256=
|
|
341
|
-
endoreg_db/models/administration/ai/model_type.py,sha256=
|
|
340
|
+
endoreg_db/models/administration/ai/active_model.py,sha256=nyrWiqnLsSiRb13KVLMlsBPlrgOQVF0VyklpfUeHI9E,1423
|
|
341
|
+
endoreg_db/models/administration/ai/ai_model.py,sha256=4nsZGMJ60mcXdJiirBtiG9fxKapSbxFMHV0t0DndJdI,6189
|
|
342
|
+
endoreg_db/models/administration/ai/model_type.py,sha256=zWwZB5u0ykNjL1oNGkWUlfImykfi4Lg4flQwNA5p454,1020
|
|
342
343
|
endoreg_db/models/administration/case/__init__.py,sha256=kW78tWrVItXRiT0R7O8Y5TtRGjyZHVDACPddPrh8rzQ,50
|
|
343
|
-
endoreg_db/models/administration/case/case.py,sha256=
|
|
344
|
+
endoreg_db/models/administration/case/case.py,sha256=fDrgd3AFe1hcHBfRP4PvIO2BI5li4i00rIBr7Oa4zFw,3876
|
|
344
345
|
endoreg_db/models/administration/case/case_template/__init__.py,sha256=q2L2GY4ICLrMWxOf1D0-OzRcxSBce49ZhPmfJLhVwSU,102
|
|
345
346
|
endoreg_db/models/administration/case/case_template/case_template.py,sha256=-xxGHkYxxD85RNWiSv6uCC_LJ23oJ2MMFpxgfyyZbpk,82
|
|
346
347
|
endoreg_db/models/administration/case/case_template/case_template_rule.py,sha256=SuIGUeuk9FUFwm2-3Ks5hu7IwNZWuBEYv2VuCr-s_9o,87
|
|
347
348
|
endoreg_db/models/administration/case/case_template/case_template_rule_value.py,sha256=aHtbK_3X_8AbOxujERZPGAgRhWa3AwjjwAWMBb5Wqdk,93
|
|
348
349
|
endoreg_db/models/administration/case/case_template/case_template_type.py,sha256=myF4XwtS-eovCTOxlB8JOMJ5MwkEnPCYgoCiODc89iY,85
|
|
349
|
-
endoreg_db/models/administration/center/__init__.py,sha256=
|
|
350
|
-
endoreg_db/models/administration/center/center.py,sha256=
|
|
350
|
+
endoreg_db/models/administration/center/__init__.py,sha256=HxmYb7itij_UK_O9_p9OMQL41ddfA5e4np_9J8a994k,299
|
|
351
|
+
endoreg_db/models/administration/center/center.py,sha256=ZCaziNjCPmI9jYT2WFpVFnnrXAVsCNC6IGRADhY6xpI,2515
|
|
351
352
|
endoreg_db/models/administration/center/center_product.py,sha256=wlA_IQLaWMMp6pb3T3ZgzDlsrKSRZoVQ3cnEvshoUME,1923
|
|
352
|
-
endoreg_db/models/administration/center/center_resource.py,sha256=
|
|
353
|
-
endoreg_db/models/administration/center/center_shift.py,sha256=
|
|
354
|
-
endoreg_db/models/administration/center/center_waste.py,sha256=
|
|
355
|
-
endoreg_db/models/administration/person/__init__.py,sha256=
|
|
356
|
-
endoreg_db/models/administration/person/person.py,sha256=
|
|
357
|
-
endoreg_db/models/administration/person/employee/__init__.py,sha256=
|
|
353
|
+
endoreg_db/models/administration/center/center_resource.py,sha256=ZvP6rR2lS8mKkskVgJPetxzE_Eog1TTKgzWYCCHnyKA,2375
|
|
354
|
+
endoreg_db/models/administration/center/center_shift.py,sha256=PDeoGnk0xDmcrLyKaWugUnWgrESWKXE34JM7lXuStFU,2554
|
|
355
|
+
endoreg_db/models/administration/center/center_waste.py,sha256=90x4z5CjhmemUUd_XffcSPVT434Id_GswnrTSqWqcxk,1389
|
|
356
|
+
endoreg_db/models/administration/person/__init__.py,sha256=bQGDmOsisFzt2prX45GzpGd8he5AzKMYbdRITuIJ9L4,581
|
|
357
|
+
endoreg_db/models/administration/person/person.py,sha256=HED8SUxwSYeFI16i2IVWFNuejafOMUOMXTuarx8Cb9A,1223
|
|
358
|
+
endoreg_db/models/administration/person/employee/__init__.py,sha256=NumqBoyp2gt60pUB5_Ozj923HILCPS0Sul4jMSr1-e0,129
|
|
358
359
|
endoreg_db/models/administration/person/employee/employee.py,sha256=l5W43nDzNWHZq1wwTu9hcb1JW4nccc_ThnedmVSByEQ,1098
|
|
359
360
|
endoreg_db/models/administration/person/employee/employee_qualification.py,sha256=vTdhhosmfiULHbApfHHjHioJnmuMbQMW8kycZVkPOk0,1391
|
|
360
|
-
endoreg_db/models/administration/person/employee/employee_type.py,sha256=
|
|
361
|
-
endoreg_db/models/administration/person/examiner/__init__.py,sha256=
|
|
362
|
-
endoreg_db/models/administration/person/examiner/examiner.py,sha256=
|
|
361
|
+
endoreg_db/models/administration/person/employee/employee_type.py,sha256=xcTFf_89S7O7re-f3F35_Jyz-j0UVl9QKy-w011MM64,1256
|
|
362
|
+
endoreg_db/models/administration/person/examiner/__init__.py,sha256=88DCGYpZTSQrmnrcxxLLy7vVtuL1ASdryZjeFPsmD_g,56
|
|
363
|
+
endoreg_db/models/administration/person/examiner/examiner.py,sha256=Mac7dxgWZ85lkIqM9WN9tuaB4q2VU-o6Yzg1LfanhIo,1776
|
|
363
364
|
endoreg_db/models/administration/person/names/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
364
|
-
endoreg_db/models/administration/person/names/first_name.py,sha256=
|
|
365
|
-
endoreg_db/models/administration/person/names/last_name.py,sha256=
|
|
366
|
-
endoreg_db/models/administration/person/patient/__init__.py,sha256=
|
|
367
|
-
endoreg_db/models/administration/person/patient/patient.py,sha256=
|
|
368
|
-
endoreg_db/models/administration/person/patient/patient_external_id.py,sha256=
|
|
365
|
+
endoreg_db/models/administration/person/names/first_name.py,sha256=lxGVA-cdda4sXBy9hxGhVINCKnXWUoXd0H4U_VViGLU,452
|
|
366
|
+
endoreg_db/models/administration/person/names/last_name.py,sha256=8QDU5mCO_kLxTUlgf_qgFOk6TWqc7H3653LFZOrCY5U,426
|
|
367
|
+
endoreg_db/models/administration/person/patient/__init__.py,sha256=5sRdXHpEFN2SEdANW_FZz0KWu2aEtSMJ9Ff9CB_Bmnk,135
|
|
368
|
+
endoreg_db/models/administration/person/patient/patient.py,sha256=33V-Frg25DTIJ2AhjQ_ACYKfyBvc0aU3918fxWwlRzo,17463
|
|
369
|
+
endoreg_db/models/administration/person/patient/patient_external_id.py,sha256=br24NoXPDWy5LF2FGOZ3gRm1MFxT78J9RuW-hDTH-bg,912
|
|
369
370
|
endoreg_db/models/administration/person/profession/__init__.py,sha256=wxqhS38cCLJq3U2JY3_gmseiMHoKeF9pbJAO18nyapM,684
|
|
370
371
|
endoreg_db/models/administration/person/user/__init__.py,sha256=vUgDOU5hTkszcLMBPWBGF_feLdoCHgVW6HW4y232kIs,89
|
|
371
372
|
endoreg_db/models/administration/person/user/portal_user_information.py,sha256=O4JTHVPE93UWGP2F7FihfLE3F3i7HDl5qGU5Nm1X-Xg,1071
|
|
372
|
-
endoreg_db/models/administration/product/__init__.py,sha256=
|
|
373
|
-
endoreg_db/models/administration/product/product.py,sha256=
|
|
374
|
-
endoreg_db/models/administration/product/product_group.py,sha256=
|
|
375
|
-
endoreg_db/models/administration/product/product_material.py,sha256=
|
|
373
|
+
endoreg_db/models/administration/product/__init__.py,sha256=Qzsv5nE5-p30KOu6MjY1LLWnhX8qSiqgMI4PlWU2HVY,356
|
|
374
|
+
endoreg_db/models/administration/product/product.py,sha256=6TefIgFYAOCTJGYdZJq94tOPuHp3oe_Swm8TzTErBl0,4102
|
|
375
|
+
endoreg_db/models/administration/product/product_group.py,sha256=JICmwxbmWgleV6F936HjT9YZGDgFWhzEffi-WtGPdL0,973
|
|
376
|
+
endoreg_db/models/administration/product/product_material.py,sha256=1jt4AaVcGEOpfzBuZge7RDzMIkmx1hSsjANxgGNPjRc,2020
|
|
376
377
|
endoreg_db/models/administration/product/product_weight.py,sha256=orAoQAKQgt8GXB2Ci3oF-Ozj8YIKthBASAU_-1qhHD4,1615
|
|
377
|
-
endoreg_db/models/administration/product/reference_product.py,sha256=
|
|
378
|
+
endoreg_db/models/administration/product/reference_product.py,sha256=NXGCv5WKPIpeGo4V4L5lSNADPS3myMBQoAnl2om_Azw,5204
|
|
378
379
|
endoreg_db/models/administration/qualification/__init__.py,sha256=HQq1CKpgFLT_6MhkpuD4SinIw-pAD39VGVmA3PxXaiw,152
|
|
379
|
-
endoreg_db/models/administration/qualification/qualification.py,sha256=
|
|
380
|
+
endoreg_db/models/administration/qualification/qualification.py,sha256=MyhzdHjRFkgYA4wJsOKaqwm69Ui0OKvL-5DSJkTE34k,1125
|
|
380
381
|
endoreg_db/models/administration/qualification/qualification_type.py,sha256=daQ6qLJA0fflBsOXq-IxlXXQZTANd4cZmLxe8820iC4,986
|
|
381
382
|
endoreg_db/models/administration/shift/__init__.py,sha256=-YDYCWFwpEJllbvQ18i2rIkf4KNRkSXlUfNiZ3EAeNM,167
|
|
382
383
|
endoreg_db/models/administration/shift/scheduled_days.py,sha256=h5cUQY4g6Wn-R5KBFsC9ZKi4hPkYLeb6WtNYbMkTJV0,1579
|
|
383
|
-
endoreg_db/models/administration/shift/shift.py,sha256=
|
|
384
|
-
endoreg_db/models/administration/shift/shift_type.py,sha256=
|
|
385
|
-
endoreg_db/models/
|
|
386
|
-
endoreg_db/models/
|
|
387
|
-
endoreg_db/models/label/
|
|
384
|
+
endoreg_db/models/administration/shift/shift.py,sha256=Y_OPbbVscPXj6y30QNSHSFQ29EQZjlvj3YNv2Kl8dWg,1406
|
|
385
|
+
endoreg_db/models/administration/shift/shift_type.py,sha256=rRyW-Td1fkZsoDCtUPILYVAsL5FOE-eUdw0GS0tzS64,3289
|
|
386
|
+
endoreg_db/models/aidataset/__init__.py,sha256=spL5JwlqQVeYhetWGJqNU5ddhCta3dy8dC3LPuk-Ots,65
|
|
387
|
+
endoreg_db/models/aidataset/aidataset.py,sha256=5m0R0-Ad8Vs9PIJefAU_ApJLkcRc-PatDWkCOl-bgU0,6950
|
|
388
|
+
endoreg_db/models/label/__init__.py,sha256=L2BGUyM7QOzX3YIbeHQim_ldtgvrSgJpP11BI6qcNrM,615
|
|
389
|
+
endoreg_db/models/label/label.py,sha256=jNc7GaL2hMPLYsUPamUZi97K1HrgIGxyEljD0mkSHqI,2550
|
|
390
|
+
endoreg_db/models/label/label_set.py,sha256=_sJuUjGPGO3g4At1Gy98S8d_G4weopXvDJ7rTwJDKEU,1862
|
|
388
391
|
endoreg_db/models/label/label_type.py,sha256=80RlxsKeaUKuTaBXz0h-Wejf4g0L9ZzuwxzVmDeSJec,663
|
|
389
392
|
endoreg_db/models/label/video_segmentation_label.py,sha256=pykx8zcayyo-uWwOVyX10tMYX_pEuTZFzd4DhVAxPuQ,1034
|
|
390
393
|
endoreg_db/models/label/video_segmentation_labelset.py,sha256=D8s0uWc-wcdOrzE3X0ljVgauFj2sI9d617EM9jUwbCc,787
|
|
@@ -392,380 +395,380 @@ endoreg_db/models/label/annotation/__init__.py,sha256=6igZTy9Iqw-GRf8yB82zoFOsSH
|
|
|
392
395
|
endoreg_db/models/label/annotation/image_classification.py,sha256=fBxXssr-8OL0oUhmwHV-c9DK2yUI7V_59Hs0ajtC6-k,3132
|
|
393
396
|
endoreg_db/models/label/annotation/video_segmentation_annotation.py,sha256=xwsUJC-cd6gfD4y4OVRh3WFh4p7HsVZnDBHXNVrYops,1800
|
|
394
397
|
endoreg_db/models/label/label_video_segment/__init__.py,sha256=MLFkJvmLm8IZccn2IOMg9C9kZyKUviZtAZpbGdev_nw,84
|
|
395
|
-
endoreg_db/models/label/label_video_segment/_create_from_video.py,sha256=
|
|
396
|
-
endoreg_db/models/label/label_video_segment/label_video_segment.py,sha256=
|
|
397
|
-
endoreg_db/models/media/__init__.py,sha256=
|
|
398
|
-
endoreg_db/models/media/frame/__init__.py,sha256=
|
|
399
|
-
endoreg_db/models/media/frame/frame.py,sha256=
|
|
400
|
-
endoreg_db/models/media/pdf/__init__.py,sha256=
|
|
401
|
-
endoreg_db/models/media/pdf/raw_pdf.py,sha256=
|
|
402
|
-
endoreg_db/models/media/pdf/report_file.py,sha256=
|
|
403
|
-
endoreg_db/models/media/pdf/report_reader/__init__.py,sha256=
|
|
398
|
+
endoreg_db/models/label/label_video_segment/_create_from_video.py,sha256=ocZu15ZiN6dtFyrgP3N5RXuQEjFl5lsth2Gc98_kqm4,1223
|
|
399
|
+
endoreg_db/models/label/label_video_segment/label_video_segment.py,sha256=XlmbS1acQPpNUuJHNGQA9ZvIQRNst1-MLBVDCruR-UQ,23452
|
|
400
|
+
endoreg_db/models/media/__init__.py,sha256=iw6LTRNr0wvl4q-ko1uPQEYFAC5M1wN0UN7fHDAS2pc,494
|
|
401
|
+
endoreg_db/models/media/frame/__init__.py,sha256=_DkKKh-pdWBpxYIYdwHvxUkEj2YtgNIFaSN_TxLKalI,46
|
|
402
|
+
endoreg_db/models/media/frame/frame.py,sha256=RkXPVnOxSHQZCy4fms5t_r15tqzIMW1FLtbQWgLJTrc,4759
|
|
403
|
+
endoreg_db/models/media/pdf/__init__.py,sha256=LXrTkw8SG3Kk3P1P6te5Au0c_rbrE3N8X0M2jf2g-zc,345
|
|
404
|
+
endoreg_db/models/media/pdf/raw_pdf.py,sha256=Sc7V2Re3ef2BUOwIiJ3CEXlXphx24AdF0m1ON2PDvUI,29750
|
|
405
|
+
endoreg_db/models/media/pdf/report_file.py,sha256=T5xNDb5JGPDUbZGAS33G9JY9fzwPi7H2ipyGfzEwK68,4445
|
|
406
|
+
endoreg_db/models/media/pdf/report_reader/__init__.py,sha256=ruG41X9RcWNuG7ZRwK1fCBOnpiTMYBI9rWu_iAP7FTk,167
|
|
404
407
|
endoreg_db/models/media/pdf/report_reader/report_reader_config.py,sha256=CIvRYSSBhIltMqCgtGkhtORYX8VnR6hf2F1v2zISJx4,3403
|
|
405
|
-
endoreg_db/models/media/pdf/report_reader/report_reader_flag.py,sha256=
|
|
406
|
-
endoreg_db/models/media/processing_history/__init__.py,sha256=s01wPFbVYlZ93mNVyXHK7PyPtLSpF1LdUqXQKeJAcbY,88
|
|
407
|
-
endoreg_db/models/media/processing_history/processing_history.py,sha256=o-Ee90LVRmN53mZyWHCcfeYv4ywXo-oWHIschZQ9eUo,2953
|
|
408
|
+
endoreg_db/models/media/pdf/report_reader/report_reader_flag.py,sha256=QF5Ri2_nW1A_PFSvi2LUKWbSqOg15CZW1E2xZIvqOk0,1290
|
|
408
409
|
endoreg_db/models/media/video/__init__.py,sha256=GJ5wdcvmPdptbSCfYuJeD_UegIdm3kOxjcLLBhKht-s,212
|
|
409
|
-
endoreg_db/models/media/video/create_from_file.py,sha256=
|
|
410
|
-
endoreg_db/models/media/video/pipe_1.py,sha256=
|
|
411
|
-
endoreg_db/models/media/video/pipe_2.py,sha256=
|
|
412
|
-
endoreg_db/models/media/video/video_file.py,sha256=
|
|
413
|
-
endoreg_db/models/media/video/video_file_ai.py,sha256=
|
|
414
|
-
endoreg_db/models/media/video/video_file_anonymize.py,sha256=
|
|
415
|
-
endoreg_db/models/media/video/video_file_io.py,sha256=
|
|
416
|
-
endoreg_db/models/media/video/video_file_segments.py,sha256=
|
|
417
|
-
endoreg_db/models/media/video/video_metadata.py,sha256=
|
|
418
|
-
endoreg_db/models/media/video/video_processing.py,sha256=
|
|
410
|
+
endoreg_db/models/media/video/create_from_file.py,sha256=YuC-8tWKnrHhELzRHCuvRhqJfQiDWL21o05USKAtZt4,14785
|
|
411
|
+
endoreg_db/models/media/video/pipe_1.py,sha256=jkPH-liYObQmF5bdY_Un1xfcUZOIbuJaUY8iX0sr2Ew,10563
|
|
412
|
+
endoreg_db/models/media/video/pipe_2.py,sha256=tfN6CzD8qOVts49--gY5ARLlOD1-3uQCXWkakXGxK50,5418
|
|
413
|
+
endoreg_db/models/media/video/video_file.py,sha256=qlRtmQ7rCUUCEKgYJ_dvcJz7oz_Uvq5lzMwDakQDB4U,32295
|
|
414
|
+
endoreg_db/models/media/video/video_file_ai.py,sha256=u3Nd4Rdv0aw7CKphBpZ1G4ct2w7TqpmIEfnqzdh0IwY,28424
|
|
415
|
+
endoreg_db/models/media/video/video_file_anonymize.py,sha256=B03tlDLfSWEQ1LJmZL0CasTUSepO8hvvc0jaWos5B4I,18650
|
|
416
|
+
endoreg_db/models/media/video/video_file_io.py,sha256=UY_ux9F6JyB2Mdc7LFScUY8aM5abrUIRImfxgLsWDRQ,9734
|
|
417
|
+
endoreg_db/models/media/video/video_file_segments.py,sha256=J3web2cKqBUvXFERfPwWmUZyQeNUZN1sROSqUDOxGJo,9920
|
|
418
|
+
endoreg_db/models/media/video/video_metadata.py,sha256=MOcFjZpdE_HgIpdu1eegZVee8ZvtVxuV01fn31j-n5Y,1967
|
|
419
|
+
endoreg_db/models/media/video/video_processing.py,sha256=qvWayQBlkORTpOsgGCCGXxol4ZKSJtk86igbV44TZjw,5892
|
|
419
420
|
endoreg_db/models/media/video/video_file_frames/__init__.py,sha256=H262Lbkau6atEdM9kaabvhuu0ato63KNWMz1L5yFXpE,2062
|
|
420
|
-
endoreg_db/models/media/video/video_file_frames/_bulk_create_frames.py,sha256=
|
|
421
|
-
endoreg_db/models/media/video/video_file_frames/_create_frame_object.py,sha256=
|
|
422
|
-
endoreg_db/models/media/video/video_file_frames/_delete_frames.py,sha256=
|
|
423
|
-
endoreg_db/models/media/video/video_file_frames/_extract_frames.py,sha256=
|
|
424
|
-
endoreg_db/models/media/video/video_file_frames/_get_frame.py,sha256=
|
|
421
|
+
endoreg_db/models/media/video/video_file_frames/_bulk_create_frames.py,sha256=MohAap2A2I7a4L4b3GmD6IHZQC_dR7-4V2QuaFATJr0,688
|
|
422
|
+
endoreg_db/models/media/video/video_file_frames/_create_frame_object.py,sha256=uinp6DvG3WUOykldRumzaBzSIVClg2wuOddX5vMK3FA,569
|
|
423
|
+
endoreg_db/models/media/video/video_file_frames/_delete_frames.py,sha256=mkim1naee6yaFO5PjHD5HDxXK8WkcQKxZMKz3KEskHs,4441
|
|
424
|
+
endoreg_db/models/media/video/video_file_frames/_extract_frames.py,sha256=fGUjqhKVABHWE7XigT6wltb5gYhviBILLbgzJpUTmPQ,9549
|
|
425
|
+
endoreg_db/models/media/video/video_file_frames/_get_frame.py,sha256=6DjrhF4HFEY28FCwfzdNgayw2hk7S5xJdi0YmWBKQxQ,1142
|
|
425
426
|
endoreg_db/models/media/video/video_file_frames/_get_frame_number.py,sha256=OvUp2yAQeHXgBIJFECc85IGV4LDaihW9cIIkchgkR6g,344
|
|
426
|
-
endoreg_db/models/media/video/video_file_frames/_get_frame_path.py,sha256=
|
|
427
|
-
endoreg_db/models/media/video/video_file_frames/_get_frame_paths.py,sha256=
|
|
428
|
-
endoreg_db/models/media/video/video_file_frames/_get_frame_range.py,sha256
|
|
429
|
-
endoreg_db/models/media/video/video_file_frames/_get_frames.py,sha256=
|
|
430
|
-
endoreg_db/models/media/video/video_file_frames/_initialize_frames.py,sha256=
|
|
431
|
-
endoreg_db/models/media/video/video_file_frames/_manage_frame_range.py,sha256=
|
|
432
|
-
endoreg_db/models/media/video/video_file_frames/_mark_frames_extracted_status.py,sha256=
|
|
433
|
-
endoreg_db/models/media/video/video_file_meta/__init__.py,sha256=
|
|
434
|
-
endoreg_db/models/media/video/video_file_meta/get_crop_template.py,sha256=
|
|
435
|
-
endoreg_db/models/media/video/video_file_meta/get_endo_roi.py,sha256=
|
|
436
|
-
endoreg_db/models/media/video/video_file_meta/get_fps.py,sha256=
|
|
437
|
-
endoreg_db/models/media/video/video_file_meta/initialize_video_specs.py,sha256=
|
|
438
|
-
endoreg_db/models/media/video/video_file_meta/text_meta.py,sha256=
|
|
439
|
-
endoreg_db/models/media/video/video_file_meta/video_meta.py,sha256=
|
|
440
|
-
endoreg_db/models/medical/__init__.py,sha256=
|
|
441
|
-
endoreg_db/models/medical/disease.py,sha256=
|
|
442
|
-
endoreg_db/models/medical/event.py,sha256=
|
|
427
|
+
endoreg_db/models/media/video/video_file_frames/_get_frame_path.py,sha256=WT8NmsceRgZ-NA7KUdTtc2-5K_0elRUVM6zeGvLN2yw,716
|
|
428
|
+
endoreg_db/models/media/video/video_file_frames/_get_frame_paths.py,sha256=3klxI0thSVfBlRrQrKiVdyHQyZhge8XDK_X1RBLIh6o,1200
|
|
429
|
+
endoreg_db/models/media/video/video_file_frames/_get_frame_range.py,sha256=-uagwh7bkpVBirM6Z_2Ku388xGY4VaTiSW1f2feYa0A,1389
|
|
430
|
+
endoreg_db/models/media/video/video_file_frames/_get_frames.py,sha256=auuDzpBhlXWm-DxfGM3I9-euLKRNdX4kakqo228v9Rk,983
|
|
431
|
+
endoreg_db/models/media/video/video_file_frames/_initialize_frames.py,sha256=OEe8O33iVNZOc92MyLWxKp2LGspieokBFViQ5FHypFs,8161
|
|
432
|
+
endoreg_db/models/media/video/video_file_frames/_manage_frame_range.py,sha256=FN-K8ChKy3up17rZhqgXYtNXS6aeWgQw8hf0DXkRdto,7259
|
|
433
|
+
endoreg_db/models/media/video/video_file_frames/_mark_frames_extracted_status.py,sha256=GouMh9TdxDsnXtwamfFu8cmela2qYtwvDxIbRF7WKcg,4140
|
|
434
|
+
endoreg_db/models/media/video/video_file_meta/__init__.py,sha256=fx45NqCmxE17OS574i_9PDjcVMj5imfQbuZnRetRyvM,645
|
|
435
|
+
endoreg_db/models/media/video/video_file_meta/get_crop_template.py,sha256=TcGNUGaQbkRvvZudw3aWK6l17ONBeZ5JWrPWd_wPKGk,1804
|
|
436
|
+
endoreg_db/models/media/video/video_file_meta/get_endo_roi.py,sha256=tG4j5MhzCUzcsAqnbevsFe4VoOBoJK60Itb0_Qq9I_Q,1997
|
|
437
|
+
endoreg_db/models/media/video/video_file_meta/get_fps.py,sha256=PhIvM947S8E_PI-Ls5IrzCwL_8HlQiqhzj-u5mmkxjw,6798
|
|
438
|
+
endoreg_db/models/media/video/video_file_meta/initialize_video_specs.py,sha256=F1uiK5gR_yzA0tMRfcPNhdyhxLgMXb3-qbcee9FZlFc,7709
|
|
439
|
+
endoreg_db/models/media/video/video_file_meta/text_meta.py,sha256=tNO9er4FbFzHGw3YNOHB2xwp02ujiDfppzjUYo4e17w,7117
|
|
440
|
+
endoreg_db/models/media/video/video_file_meta/video_meta.py,sha256=byor_fImqb09PqW-ys2F87ITBe-gjJaoYiLwrudeYcY,4315
|
|
441
|
+
endoreg_db/models/medical/__init__.py,sha256=V-7gYl3QKWTYFb5VRKd18kILoaClqkPrTNBMYfUkQcM,2915
|
|
442
|
+
endoreg_db/models/medical/disease.py,sha256=oYbHmqRn4CvLIRIf6JU7RprXV6pqza7MY-JXrIoB89I,5187
|
|
443
|
+
endoreg_db/models/medical/event.py,sha256=2PgpsqPMMIVbAXZd17W3x0-GjP0ViF-cKzA808l9vF4,4465
|
|
443
444
|
endoreg_db/models/medical/contraindication/README.md,sha256=sOx2L1HlZz_S6QvEA-IskuaGsLUBmVWcTzRbdp8q7ZY,28
|
|
444
|
-
endoreg_db/models/medical/contraindication/__init__.py,sha256=
|
|
445
|
-
endoreg_db/models/medical/examination/__init__.py,sha256=
|
|
446
|
-
endoreg_db/models/medical/examination/examination.py,sha256
|
|
447
|
-
endoreg_db/models/medical/examination/examination_indication.py,sha256=
|
|
448
|
-
endoreg_db/models/medical/examination/examination_time.py,sha256=
|
|
445
|
+
endoreg_db/models/medical/contraindication/__init__.py,sha256=dFacO67vdmbPCUNfVa22b9tO5-dvrkslCpYqzHmsbOI,734
|
|
446
|
+
endoreg_db/models/medical/examination/__init__.py,sha256=P5ykDSV29idGlAcGgPXtgVZjMeepbX5a8soYj3yvzy0,627
|
|
447
|
+
endoreg_db/models/medical/examination/examination.py,sha256=63TjUV6BvtM9i3kKD8XCMv0TaP72_PVwjNisan_ZHhs,5328
|
|
448
|
+
endoreg_db/models/medical/examination/examination_indication.py,sha256=TAst9RY62fvZo5AX3o1jEswWzQy9lWGL7brsUFP-kro,7109
|
|
449
|
+
endoreg_db/models/medical/examination/examination_time.py,sha256=VCqecEwN7USNWjDdhPpgIY9z8hN-YfUTAhoGeaKLb14,1959
|
|
449
450
|
endoreg_db/models/medical/examination/examination_time_type.py,sha256=Cqf4cUstXSyqqG8GBETjusad6ghl8k5il27XyZ9dLU4,1226
|
|
450
451
|
endoreg_db/models/medical/examination/examination_type.py,sha256=4SlqinG6QdaNpBcyH-aiizeqVGLzjTObHAWQth__U1Y,1221
|
|
451
|
-
endoreg_db/models/medical/finding/__init__.py,sha256=
|
|
452
|
-
endoreg_db/models/medical/finding/finding.py,sha256=
|
|
453
|
-
endoreg_db/models/medical/finding/finding_classification.py,sha256=
|
|
454
|
-
endoreg_db/models/medical/finding/finding_intervention.py,sha256=
|
|
455
|
-
endoreg_db/models/medical/finding/finding_type.py,sha256=
|
|
456
|
-
endoreg_db/models/medical/hardware/__init__.py,sha256=
|
|
457
|
-
endoreg_db/models/medical/hardware/endoscope.py,sha256=
|
|
452
|
+
endoreg_db/models/medical/finding/__init__.py,sha256=pg_Ebme_MxUsUOCHlN70qChlwbmX4QBlAASEw_sbyqs,483
|
|
453
|
+
endoreg_db/models/medical/finding/finding.py,sha256=5WXHX0tiKLAv0yOrtrwHQfDK45wI0R63xjTnJvwsxEY,3936
|
|
454
|
+
endoreg_db/models/medical/finding/finding_classification.py,sha256=bIhNQWrhI7pAeunhcXM0z2vKcrBXvWy9Ynj8xMgFpLk,3924
|
|
455
|
+
endoreg_db/models/medical/finding/finding_intervention.py,sha256=iOOajwwLDQBcSIF4QpDnJNUppZ-Ej3nKfc2KhiddlMg,1856
|
|
456
|
+
endoreg_db/models/medical/finding/finding_type.py,sha256=aNiAplRVMt9zXZ5KmLnEA99aeHDWN7tmAIVZRTSzwsY,1015
|
|
457
|
+
endoreg_db/models/medical/hardware/__init__.py,sha256=_SX5Hv5Zips9tNvmt-a4AuSh1tm9rOqvGE1iP3v2BMs,179
|
|
458
|
+
endoreg_db/models/medical/hardware/endoscope.py,sha256=NFJ4IXPfVaLHpoV426b2W3seIlDPlcPvY7KOgTQkqGo,1876
|
|
458
459
|
endoreg_db/models/medical/hardware/endoscopy_processor.py,sha256=mZgwJNbwmQ-aRvOxzIbSklHr_ANJEZLf_plQzS773r0,6624
|
|
459
|
-
endoreg_db/models/medical/laboratory/__init__.py,sha256=
|
|
460
|
-
endoreg_db/models/medical/laboratory/lab_value.py,sha256=
|
|
461
|
-
endoreg_db/models/medical/medication/__init__.py,sha256=
|
|
462
|
-
endoreg_db/models/medical/medication/medication.py,sha256=
|
|
463
|
-
endoreg_db/models/medical/medication/medication_indication.py,sha256=
|
|
464
|
-
endoreg_db/models/medical/medication/medication_indication_type.py,sha256=
|
|
465
|
-
endoreg_db/models/medical/medication/medication_intake_time.py,sha256=
|
|
466
|
-
endoreg_db/models/medical/medication/medication_schedule.py,sha256=
|
|
460
|
+
endoreg_db/models/medical/laboratory/__init__.py,sha256=o-zMn1lH0oRABA-g03oAnJS0x65Q3j5EqslntEmaSIo,63
|
|
461
|
+
endoreg_db/models/medical/laboratory/lab_value.py,sha256=oR_fEZAfBonUnfZvsZeQfspAJsQUuIzWcr8J6rRYkpc,21644
|
|
462
|
+
endoreg_db/models/medical/medication/__init__.py,sha256=htPN4Tno-FFlWs7W61b9TNfyse7W9r0bTXBaL5Jy__w,777
|
|
463
|
+
endoreg_db/models/medical/medication/medication.py,sha256=o7IgtxKSFimu_H7XwbkFTMo2U5ywVHp_3JT0foiscUM,1358
|
|
464
|
+
endoreg_db/models/medical/medication/medication_indication.py,sha256=1T2oOMkCbbdx2hlDRfKsX6mPvrQokvHeL8LR_gFlF7g,2562
|
|
465
|
+
endoreg_db/models/medical/medication/medication_indication_type.py,sha256=WNIx5SnXDwAQYZu_iewTrUqMAPq8SGS8z41WH2jJU4c,1766
|
|
466
|
+
endoreg_db/models/medical/medication/medication_intake_time.py,sha256=nOqJ2g83hwcf4JL4NXigFgRe6l2vYTVw2pQTwIfXFtc,1699
|
|
467
|
+
endoreg_db/models/medical/medication/medication_schedule.py,sha256=8jlX9IvX3zDUcisNVNzL86uB-qiE8qp4IGJLKaNHQ3c,1834
|
|
467
468
|
endoreg_db/models/medical/organ/__init__.py,sha256=l0taAVfBO62XnEzl3kQCzeTJw9yq9Q65lQS4DL5bbak,992
|
|
468
|
-
endoreg_db/models/medical/patient/__init__.py,sha256=
|
|
469
|
-
endoreg_db/models/medical/patient/medication_examples.py,sha256=
|
|
470
|
-
endoreg_db/models/medical/patient/patient_disease.py,sha256=
|
|
471
|
-
endoreg_db/models/medical/patient/patient_event.py,sha256=
|
|
472
|
-
endoreg_db/models/medical/patient/patient_examination.py,sha256=
|
|
473
|
-
endoreg_db/models/medical/patient/patient_examination_indication.py,sha256=
|
|
474
|
-
endoreg_db/models/medical/patient/patient_finding.py,sha256=
|
|
475
|
-
endoreg_db/models/medical/patient/patient_finding_classification.py,sha256=
|
|
476
|
-
endoreg_db/models/medical/patient/patient_finding_intervention.py,sha256=
|
|
477
|
-
endoreg_db/models/medical/patient/patient_lab_sample.py,sha256=
|
|
478
|
-
endoreg_db/models/medical/patient/patient_lab_value.py,sha256=
|
|
479
|
-
endoreg_db/models/medical/patient/patient_medication.py,sha256=
|
|
480
|
-
endoreg_db/models/medical/patient/patient_medication_schedule.py,sha256=
|
|
469
|
+
endoreg_db/models/medical/patient/__init__.py,sha256=4yGPrMOX6tAtbh8Agf9x44KU2P3fdrXi71WBtqq79ho,1142
|
|
470
|
+
endoreg_db/models/medical/patient/medication_examples.py,sha256=rOG25boFl3R6_IapblNdT2d2Jn9VPY8HTmlyHI1_KqI,1031
|
|
471
|
+
endoreg_db/models/medical/patient/patient_disease.py,sha256=9oRR7RIaWu1xqzOKzWOOIFxSSdvA7jVxnzfO2jrQ8Vw,2510
|
|
472
|
+
endoreg_db/models/medical/patient/patient_event.py,sha256=CPEcyUZB6D0wLulSFV-0TM_SZvJFN8NGCHlpGtY4Eu8,2787
|
|
473
|
+
endoreg_db/models/medical/patient/patient_examination.py,sha256=to2X5PlYk6De1qclQXSiWU-eTRl4-TJPeT9VAg9Zrpg,10094
|
|
474
|
+
endoreg_db/models/medical/patient/patient_examination_indication.py,sha256=KFRLPo0bsbnHgjn0ex_c8Cw4fEGZa0rgQqJK8QpL_P8,1707
|
|
475
|
+
endoreg_db/models/medical/patient/patient_finding.py,sha256=MnOD2XSjWqGZwJ5Wh1jTgZWbEXk9Z1rYu1c6fq2NCik,15832
|
|
476
|
+
endoreg_db/models/medical/patient/patient_finding_classification.py,sha256=LjyfzbAjcu5f_Mvh4pdMFUWaT-IPhJ29Pn4n03IvzFM,8895
|
|
477
|
+
endoreg_db/models/medical/patient/patient_finding_intervention.py,sha256=ebfCs-EnE668ZJA7chduKnjZW1yWz65Uay0ApAv8yJA,1178
|
|
478
|
+
endoreg_db/models/medical/patient/patient_lab_sample.py,sha256=QCJzLfrV9tdFD9IrBRHUIChbHHAB-05ee6e3hArt9GE,5513
|
|
479
|
+
endoreg_db/models/medical/patient/patient_lab_value.py,sha256=E0fEnOa9q0w3l1ygRA0ClUta5YeRDwhHFUhWKSfVN0I,8191
|
|
480
|
+
endoreg_db/models/medical/patient/patient_medication.py,sha256=44Rn0SRqJBntYVshttbmi76vpcDjgk-nWafntKGX1wY,3730
|
|
481
|
+
endoreg_db/models/medical/patient/patient_medication_schedule.py,sha256=3iLTxuwwkKnj7dECW9ZiTolPLm9CVv4Ytbsc6t2_zL4,5634
|
|
481
482
|
endoreg_db/models/medical/risk/__init__.py,sha256=KFU25R1fT7POBj6MINYgigYAWYC8NIM-6jx3e_A-bqo,98
|
|
482
483
|
endoreg_db/models/medical/risk/risk.py,sha256=etH8SuB3uVtAJU8CbJSAHyyBKDcC8rNeWRcyqLqzn9c,1901
|
|
483
484
|
endoreg_db/models/medical/risk/risk_type.py,sha256=BAeD5cNVVKJoAX578p_l0ZqRFHagzwZDtBIgZ65bWTg,1332
|
|
484
485
|
endoreg_db/models/metadata/__init__.py,sha256=8I6oLj3YTmeaPGJpL0AWG5gLwp38QzrEggxSkTisv7c,474
|
|
485
|
-
endoreg_db/models/metadata/model_meta.py,sha256=
|
|
486
|
-
endoreg_db/models/metadata/model_meta_logic.py,sha256=
|
|
486
|
+
endoreg_db/models/metadata/model_meta.py,sha256=ZYqP7Otoi-imDQT7RI93FWbgxeRG8YpBvV5uIJePSj4,9225
|
|
487
|
+
endoreg_db/models/metadata/model_meta_logic.py,sha256=XezadmmX3lwTiGenAX0nlinNB4SdZzVvHaOiR6X3Jn8,17061
|
|
487
488
|
endoreg_db/models/metadata/pdf_meta.py,sha256=GRQE6ROQxILMl0uKjEQ2BUv8gIDWjD6z-OE5V_wR6Zk,3331
|
|
488
|
-
endoreg_db/models/metadata/sensitive_meta.py,sha256=
|
|
489
|
-
endoreg_db/models/metadata/sensitive_meta_logic.py,sha256=
|
|
490
|
-
endoreg_db/models/metadata/video_meta.py,sha256=
|
|
491
|
-
endoreg_db/models/metadata/video_prediction_logic.py,sha256=
|
|
492
|
-
endoreg_db/models/metadata/video_prediction_meta.py,sha256=
|
|
493
|
-
endoreg_db/models/other/__init__.py,sha256=
|
|
489
|
+
endoreg_db/models/metadata/sensitive_meta.py,sha256=heVQRdu0G8YImaM9xAtIe85F9S-A-ePzprHRDxv7fVY,14049
|
|
490
|
+
endoreg_db/models/metadata/sensitive_meta_logic.py,sha256=RDmqYwP6DAz1SNyhs2elVKJEHTqZUux2pyezRVOp5Fo,45949
|
|
491
|
+
endoreg_db/models/metadata/video_meta.py,sha256=b4JimYtUJ0K0e-vo8bnQw_MSn90xFO8SGBcpTs3aRLU,17409
|
|
492
|
+
endoreg_db/models/metadata/video_prediction_logic.py,sha256=4KgOmlVSRvGmhmliHnc7CvBavH-NhVYh_YKtGeB8tgc,8084
|
|
493
|
+
endoreg_db/models/metadata/video_prediction_meta.py,sha256=fMzj4sT1V8q93DP5U3eh1kmwgRP92kO5MnT2vYbneiw,11585
|
|
494
|
+
endoreg_db/models/other/__init__.py,sha256=XwhqFAYVzCVzkvAyGisuWU_JcZijeN1iE1TAAml6iDM,895
|
|
494
495
|
endoreg_db/models/other/gender.py,sha256=kXsR5yYFrxbWj5dnz8va_bpzx49OJpRjj7ymqBEUBfA,717
|
|
495
|
-
endoreg_db/models/other/information_source.py,sha256=
|
|
496
|
-
endoreg_db/models/other/material.py,sha256=
|
|
496
|
+
endoreg_db/models/other/information_source.py,sha256=gFo12pO2oAeSksmRvaq5x2YOd_PVwrrOHdTkYcokZCM,5799
|
|
497
|
+
endoreg_db/models/other/material.py,sha256=2eDvU8XopPNh6OGqyyOAARXTKV9ZLWdLtGCYSnRdl48,903
|
|
497
498
|
endoreg_db/models/other/resource.py,sha256=SRMItQa_NW_Gy1Gtk3aVAj_zOx-1TS_08IN-N36WHto,552
|
|
498
499
|
endoreg_db/models/other/tag.py,sha256=30UkkPUOhyQHGdOyWGyZbJu7qgu0yFN88egdCgXYAXY,661
|
|
499
|
-
endoreg_db/models/other/transport_route.py,sha256=
|
|
500
|
-
endoreg_db/models/other/unit.py,sha256=
|
|
500
|
+
endoreg_db/models/other/transport_route.py,sha256=dQdCwB-ZRi8WplwnYL-Llq6sKSBinQNgxgHXP4-Ixv4,1046
|
|
501
|
+
endoreg_db/models/other/unit.py,sha256=DKw0W0x6pilBZQQ5wBZHfTKaiNsleiDtT7APFIHdfqo,1096
|
|
501
502
|
endoreg_db/models/other/waste.py,sha256=uBpMcJvytiy3eR5UimTYFebOwPr9wFC9KVRgTf4T-LU,764
|
|
502
|
-
endoreg_db/models/other/distribution/__init__.py,sha256=
|
|
503
|
-
endoreg_db/models/other/distribution/base_value_distribution.py,sha256=
|
|
504
|
-
endoreg_db/models/other/distribution/date_value_distribution.py,sha256=
|
|
505
|
-
endoreg_db/models/other/distribution/multiple_categorical_value_distribution.py,sha256=
|
|
506
|
-
endoreg_db/models/other/distribution/numeric_value_distribution.py,sha256=
|
|
503
|
+
endoreg_db/models/other/distribution/__init__.py,sha256=GzM9XWiy8XVACJwcSI6YAxNTBZLZcJoPdlxG1-NwVB0,1428
|
|
504
|
+
endoreg_db/models/other/distribution/base_value_distribution.py,sha256=Jrjc30Tl1JgE6KP9spybDRS5rznT9UT2j766hGmcBaQ,512
|
|
505
|
+
endoreg_db/models/other/distribution/date_value_distribution.py,sha256=JDk9SGcx3ZXlTZHcIHNRj_M4GvPbMKN9qBMxhF_GaFs,5449
|
|
506
|
+
endoreg_db/models/other/distribution/multiple_categorical_value_distribution.py,sha256=Su_gDApWIU6zgcmbro96Ax7xJie1y_ETDvdIFTYlsfE,1876
|
|
507
|
+
endoreg_db/models/other/distribution/numeric_value_distribution.py,sha256=bvXt2BnGsp2fKB_tbF9bx1eUV6RgC3VmzGGvnUGQQm0,8064
|
|
507
508
|
endoreg_db/models/other/distribution/single_categorical_value_distribution.py,sha256=DdkakQA1M1jPRknr1Zkm0cAxvyulF-ZEJKiQ8t2aeeI,734
|
|
508
|
-
endoreg_db/models/other/emission/__init__.py,sha256=
|
|
509
|
-
endoreg_db/models/other/emission/emission_factor.py,sha256=
|
|
509
|
+
endoreg_db/models/other/emission/__init__.py,sha256=rEatk5do3rRRz982qZ_m_06f4oLBSUPeM7Jv2RoiHME,81
|
|
510
|
+
endoreg_db/models/other/emission/emission_factor.py,sha256=Y36kSc9WJukBXadZWBUBX_DvZB9P_ziVdUh-AhrKlCM,3172
|
|
510
511
|
endoreg_db/models/report/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
511
512
|
endoreg_db/models/report/images.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
512
|
-
endoreg_db/models/report/report.py,sha256=
|
|
513
|
+
endoreg_db/models/report/report.py,sha256=IK87-ie0CDnApp5xGufpkmUSok0fWcaTBX1iGGpn69o,116
|
|
513
514
|
endoreg_db/models/requirement/__init__.py,sha256=bGZ-G89vM7o7ofFsCsLiHqqEhtjTRnqZMgTyojXiKNU,304
|
|
514
|
-
endoreg_db/models/requirement/requirement.py,sha256=
|
|
515
|
-
endoreg_db/models/requirement/requirement_error.py,sha256=
|
|
516
|
-
endoreg_db/models/requirement/requirement_operator.py,sha256=
|
|
517
|
-
endoreg_db/models/requirement/requirement_set.py,sha256=
|
|
518
|
-
endoreg_db/models/requirement/requirement_evaluation/__init__.py,sha256=
|
|
519
|
-
endoreg_db/models/requirement/requirement_evaluation/evaluate_with_dependencies.py,sha256=
|
|
520
|
-
endoreg_db/models/requirement/requirement_evaluation/get_values.py,sha256=
|
|
515
|
+
endoreg_db/models/requirement/requirement.py,sha256=p87RDrjGSfxeae3q_4YrMQCF5xbqJDTUvztQC55jB30,30662
|
|
516
|
+
endoreg_db/models/requirement/requirement_error.py,sha256=CeWoIOsEXirc--JL9clEt4FYDYXWJsIaF-aGpfEtWyE,2414
|
|
517
|
+
endoreg_db/models/requirement/requirement_operator.py,sha256=OEGDEhJ_WpwUOSmPfdmKP_B1Julb5qh_0m0hyLOvCJc,6225
|
|
518
|
+
endoreg_db/models/requirement/requirement_set.py,sha256=NH6Gs-HG19FauZ__w27RUddow56iI2hYtKEFOFD2ZMs,11316
|
|
519
|
+
endoreg_db/models/requirement/requirement_evaluation/__init__.py,sha256=YW0FxwQhqsPqOVw5WUYPF0R0hkynK_K6c0t8nVnTiic,102
|
|
520
|
+
endoreg_db/models/requirement/requirement_evaluation/evaluate_with_dependencies.py,sha256=yKSnAPAVP5W72WE3moxKvsOntNkpu9zgdddzWwCZrDM,9312
|
|
521
|
+
endoreg_db/models/requirement/requirement_evaluation/get_values.py,sha256=TsCdCeEwFsSZdeABa6WkB80eon6Ft8a_8r7OoLbyu_U,1512
|
|
521
522
|
endoreg_db/models/requirement/requirement_evaluation/operator_evaluation_models.py,sha256=KraxocNZaDf7aXaKYFtcMGMDSEJPFp1RxTlOflkLwv8,135
|
|
522
|
-
endoreg_db/models/requirement/requirement_evaluation/requirement_type_parser.py,sha256=
|
|
523
|
-
endoreg_db/models/state/__init__.py,sha256=
|
|
523
|
+
endoreg_db/models/requirement/requirement_evaluation/requirement_type_parser.py,sha256=1O9YrZTQV23xgpIQn-T0ned3rpavViDlKLA7UCcIBqA,5028
|
|
524
|
+
endoreg_db/models/state/__init__.py,sha256=2dgHa2aSBhvTEab9xspX4EpQITGLV5Q8aXuQYS1UpFk,346
|
|
524
525
|
endoreg_db/models/state/abstract.py,sha256=_mxjpzCCDotOGgxtD2ADeopqQvTgdvA0IIPuQKiilL8,264
|
|
525
526
|
endoreg_db/models/state/anonymization.py,sha256=d50YQ-4k_oIOtXICryvsyqPzf486cDFG1BmQ73peuOE,365
|
|
526
|
-
endoreg_db/models/state/audit_ledger.py,sha256=
|
|
527
|
+
endoreg_db/models/state/audit_ledger.py,sha256=kNoroV4G6HvHjCGuFSti4TJcddGGEoJSgdPWmWmBUj8,6275
|
|
527
528
|
endoreg_db/models/state/label_video_segment.py,sha256=Hv8cE27yn0GOm0t4PlcamzN47GCbE2LYLLDADr7Vm3A,854
|
|
528
|
-
endoreg_db/models/state/raw_pdf.py,sha256=
|
|
529
|
+
endoreg_db/models/state/raw_pdf.py,sha256=fWSkCBXEv06SBhMreQ9G_TLXlpIjIheQ1o8qE6I_3jk,8261
|
|
529
530
|
endoreg_db/models/state/sensitive_meta.py,sha256=fzzBehjJ9mcBJHrRM7y1A868qX76UADeh1mc8tLkzL0,1406
|
|
530
|
-
endoreg_db/models/state/video.py,sha256=
|
|
531
|
-
endoreg_db/
|
|
532
|
-
endoreg_db/
|
|
533
|
-
endoreg_db/queries/
|
|
531
|
+
endoreg_db/models/state/video.py,sha256=L0fepsyMvwZNF5gP1X3fN1TuwXXMVu5vwZwZpuFpOdk,9143
|
|
532
|
+
endoreg_db/models/state/processing_history/__init__.py,sha256=W6ShglrUXN_WFDAO1ImshPsRZgqawfuFnPpDr78vYMc,83
|
|
533
|
+
endoreg_db/models/state/processing_history/processing_history.py,sha256=kE8UlkanYDChm9IQWxW6WYjD5kLAWfXRYRxZO-0AY3I,3814
|
|
534
|
+
endoreg_db/queries/__init__.py,sha256=XJj2FWTs8bAt_S3zt0LfzbxzRhj_rimuNPYEGKBaHys,102
|
|
535
|
+
endoreg_db/queries/annotations/__init__.py,sha256=g36eHV7EhAxNbO-V-G6EsuM-6UOCEbBOH0rcm_5_9FE,88
|
|
536
|
+
endoreg_db/queries/annotations/legacy.py,sha256=Qx9ITXxWljyWDUigIzRxpEMkFrP7aZcxpkKb51Mx8ew,6485
|
|
534
537
|
endoreg_db/queries/sanity/__init_.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
535
538
|
endoreg_db/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
536
|
-
endoreg_db/schemas/examination_evaluation.py,sha256
|
|
537
|
-
endoreg_db/serializers/Frames_NICE_and_PARIS_classifications.py,sha256=
|
|
538
|
-
endoreg_db/serializers/__init__.py,sha256=
|
|
539
|
-
endoreg_db/serializers/anonymization.py,sha256=
|
|
540
|
-
endoreg_db/serializers/examination_serializer.py,sha256=
|
|
541
|
-
endoreg_db/serializers/sensitive_meta_serializer.py,sha256=
|
|
539
|
+
endoreg_db/schemas/examination_evaluation.py,sha256=9Hxqi7jaNZFvtoVcL6cVV6m0fgDLHVvF-cajUv6646E,861
|
|
540
|
+
endoreg_db/serializers/Frames_NICE_and_PARIS_classifications.py,sha256=ecEztmwQXOXVb-BchwZyo9RTxwCFAwYAkYpwiEqeE50,33005
|
|
541
|
+
endoreg_db/serializers/__init__.py,sha256=WGsp3D5Fy3X3euZEKm5u4SuaYEuuBhkiREtpxS1nJtY,3055
|
|
542
|
+
endoreg_db/serializers/anonymization.py,sha256=7KZ0R9xcZcAvgh78o2ckNGXo0zUYpMoxsDUz_UNl2gE,3043
|
|
543
|
+
endoreg_db/serializers/examination_serializer.py,sha256=7or1040HrPRjz7G75xA2UGOpnZ6VYOVJYh2BN1q3aJE,266
|
|
544
|
+
endoreg_db/serializers/sensitive_meta_serializer.py,sha256=1PY7J3u024DbGer5eM9Fbm_JuHX774Sws_4kHDooSUA,10858
|
|
542
545
|
endoreg_db/serializers/video_examination.py,sha256=jotR5PNTA_xEMpqsqdP3PFaie8TO7SGv2Vp18sj8TlY,6937
|
|
543
|
-
endoreg_db/serializers/administration/__init__.py,sha256=
|
|
544
|
-
endoreg_db/serializers/administration/center.py,sha256=
|
|
545
|
-
endoreg_db/serializers/administration/gender.py,sha256=
|
|
546
|
-
endoreg_db/serializers/administration/ai/__init__.py,sha256=
|
|
547
|
-
endoreg_db/serializers/administration/ai/active_model.py,sha256=
|
|
548
|
-
endoreg_db/serializers/administration/ai/ai_model.py,sha256=
|
|
549
|
-
endoreg_db/serializers/administration/ai/model_type.py,sha256=
|
|
550
|
-
endoreg_db/serializers/evaluation/examination_evaluation.py,sha256=
|
|
551
|
-
endoreg_db/serializers/examination/__init__.py,sha256=
|
|
552
|
-
endoreg_db/serializers/examination/base.py,sha256=
|
|
553
|
-
endoreg_db/serializers/examination/dropdown.py,sha256=
|
|
554
|
-
endoreg_db/serializers/finding/__init__.py,sha256=
|
|
555
|
-
endoreg_db/serializers/finding/finding.py,sha256=
|
|
556
|
-
endoreg_db/serializers/finding_classification/__init__.py,sha256=
|
|
557
|
-
endoreg_db/serializers/finding_classification/choice.py,sha256=
|
|
558
|
-
endoreg_db/serializers/finding_classification/classification.py,sha256=
|
|
559
|
-
endoreg_db/serializers/
|
|
560
|
-
endoreg_db/serializers/
|
|
561
|
-
endoreg_db/serializers/
|
|
562
|
-
endoreg_db/serializers/label_video_segment/__init__.py,sha256=
|
|
563
|
-
endoreg_db/serializers/label_video_segment/
|
|
564
|
-
endoreg_db/serializers/
|
|
565
|
-
endoreg_db/serializers/
|
|
566
|
-
endoreg_db/serializers/
|
|
567
|
-
endoreg_db/serializers/
|
|
568
|
-
endoreg_db/serializers/label_video_segment/label_video_segment_update.py,sha256=wZVjzmC3C1vw4d943HRnreqRNJQ7GXZvRSgBr9uWPhI,7671
|
|
569
|
-
endoreg_db/serializers/meta/__init__.py,sha256=DQfSeV4ZIifoaTHNwXxNPDeSRf41UKYf6dPF1iKNIgI,419
|
|
570
|
-
endoreg_db/serializers/meta/sensitive_meta_detail.py,sha256=yOzWgNexT4zGjf0TsC2PbU37cuj-eqq6PIp7q1XUcCo,3943
|
|
571
|
-
endoreg_db/serializers/meta/sensitive_meta_update.py,sha256=qy7cM2MhQUJST9YcEXuyYmL8oX4kkKCIcyiz2nXHo-g,5591
|
|
572
|
-
endoreg_db/serializers/meta/sensitive_meta_verification.py,sha256=gXH2RfJtVPSgnA3Z58FU6kxTZs6vBI14EEZT7lx2NFE,2289
|
|
546
|
+
endoreg_db/serializers/administration/__init__.py,sha256=W8mbjjbSQ8PI6Pr-uzRnOBpWpR43YYnPEAQyD6GjNts,316
|
|
547
|
+
endoreg_db/serializers/administration/center.py,sha256=NVdKWCW_4SzyIaOpJNcXDvt_lRPZDnLmOT1hz-ducfw,312
|
|
548
|
+
endoreg_db/serializers/administration/gender.py,sha256=bwu9A9kiLFQhHkCmKSMlGR2g0eJdMFaXXmMBXrka2R4,308
|
|
549
|
+
endoreg_db/serializers/administration/ai/__init__.py,sha256=CHWuGweB8crlQnrS482ezqnVT0GVwClz8kusNyzLLhc,228
|
|
550
|
+
endoreg_db/serializers/administration/ai/active_model.py,sha256=FfVFEIePVEh8Y7DNZzcAxwMN_lHjQFsvAOhsnU80Lc0,271
|
|
551
|
+
endoreg_db/serializers/administration/ai/ai_model.py,sha256=KEZDM2MuH0nJOqqPMBqmMjXUh1TjoPY5Kkmpvx4LSjk,566
|
|
552
|
+
endoreg_db/serializers/administration/ai/model_type.py,sha256=OnMNycnbH93mXwgWmjyLy2GDAfXJl4PobnEPU4pW0XA,263
|
|
553
|
+
endoreg_db/serializers/evaluation/examination_evaluation.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
554
|
+
endoreg_db/serializers/examination/__init__.py,sha256=iB0ScByTtBGYOGVZaaVma3t6yFqaIK4NKkT4h7_OgSk,242
|
|
555
|
+
endoreg_db/serializers/examination/base.py,sha256=KcGD_pPKPkOySVdTziFqhFrVufC3WynINKW7uxTwdX0,1544
|
|
556
|
+
endoreg_db/serializers/examination/dropdown.py,sha256=DNM5uW0kyR9v3_TUEjDwPjJZubQMYBS3b604dPzs7rw,631
|
|
557
|
+
endoreg_db/serializers/finding/__init__.py,sha256=kRHXGR38NBGAVPyZhrNqtDrlAgFbNI2xRmCPfiG9J28,79
|
|
558
|
+
endoreg_db/serializers/finding/finding.py,sha256=XPAAWAxhTjHqh9-g8jLOQK6d2xSuk5UdTFYfjhBdDEE,2138
|
|
559
|
+
endoreg_db/serializers/finding_classification/__init__.py,sha256=Cekd9u5egzJsq7GwH-RXtZR1np9ixI9LANhWzYd9K2g,217
|
|
560
|
+
endoreg_db/serializers/finding_classification/choice.py,sha256=1sD8LCdbxag29Horp3SJVYk9f-l3rvmG-AnX0BUEiUE,785
|
|
561
|
+
endoreg_db/serializers/finding_classification/classification.py,sha256=hgSFEwDxkJ39232uBwrcv5fETnU0ZffJBc-YsoWoRyY,435
|
|
562
|
+
endoreg_db/serializers/label_video_segment/__init__.py,sha256=2I0JPetMLldTopBuRPtLxG5-V85i6s_ZZJPhQ8Pmllg,307
|
|
563
|
+
endoreg_db/serializers/label_video_segment/image_classification_annotation.py,sha256=xN5AMijbMfUyjWTUbRdduozeNBXKHEisA4bXYE5yOYM,2214
|
|
564
|
+
endoreg_db/serializers/label_video_segment/label_video_segment.py,sha256=qDirsatrnVBo2aXFooGkbyYMdAO_UIu-9ZvQ-GJOhHw,15938
|
|
565
|
+
endoreg_db/serializers/label_video_segment/label/__init__.py,sha256=ZIrcZC-AY2cK4RyXz7-KSfYkmf3XUDsZGGv-4r4jsUY,74
|
|
566
|
+
endoreg_db/serializers/label_video_segment/label/label.py,sha256=0-E-9MbBdLgwsis3CfBUtoM8St-c1lmpQ9BK8LiXtD4,376
|
|
567
|
+
endoreg_db/serializers/meta/__init__.py,sha256=5B5gznfyEvIXWauiqRIm7doUIZVcG2SjV4hF4wHLJX4,419
|
|
568
|
+
endoreg_db/serializers/meta/sensitive_meta_detail.py,sha256=f4kjupWcbC5NJhf9WXPbIY3HUO9ioI03ae3RSG_7FN8,4081
|
|
569
|
+
endoreg_db/serializers/meta/sensitive_meta_update.py,sha256=ttUmQFW67BJ6Us8eoGzrJCda_Mv69-7UFbcbv226Ekw,5620
|
|
570
|
+
endoreg_db/serializers/meta/sensitive_meta_verification.py,sha256=IhGAsim-e4uXkBvHXDfJ_mK_IRy_5IjNFtLFXVxkFUk,2248
|
|
573
571
|
endoreg_db/serializers/meta/video_meta.py,sha256=g96J4va5_oIg7rbbVqcyBsy8imgmbiHjysuEEtas0cA,1284
|
|
574
|
-
endoreg_db/serializers/misc/__init__.py,sha256=
|
|
575
|
-
endoreg_db/serializers/misc/file_overview.py,sha256=
|
|
572
|
+
endoreg_db/serializers/misc/__init__.py,sha256=ms3zHOahBMudFHX1PHsTJCKL9XXPyxRHYOwwQ_XBybI,491
|
|
573
|
+
endoreg_db/serializers/misc/file_overview.py,sha256=WjN01gyQBkoV_pbHh5dfQocP6gOc7AcdXbMEmqGLacw,3968
|
|
576
574
|
endoreg_db/serializers/misc/sensitive_patient_data.py,sha256=pAHgBV6FjQ9KlpvthlsMYPgrdnE4YjE9nIdlMXKuDVs,6197
|
|
577
|
-
endoreg_db/serializers/misc/stats.py,sha256=
|
|
578
|
-
endoreg_db/serializers/misc/translatable_field_mix_in.py,sha256=
|
|
579
|
-
endoreg_db/serializers/misc/upload_job.py,sha256=
|
|
580
|
-
endoreg_db/serializers/patient/__init__.py,sha256=
|
|
581
|
-
endoreg_db/serializers/patient/patient.py,sha256=
|
|
582
|
-
endoreg_db/serializers/patient/patient_dropdown.py,sha256=
|
|
583
|
-
endoreg_db/serializers/patient_examination/__init__.py,sha256=
|
|
584
|
-
endoreg_db/serializers/patient_examination/patient_examination.py,sha256=
|
|
585
|
-
endoreg_db/serializers/patient_finding/__init__.py,sha256=
|
|
586
|
-
endoreg_db/serializers/patient_finding/patient_finding.py,sha256=
|
|
587
|
-
endoreg_db/serializers/patient_finding/patient_finding_classification.py,sha256=
|
|
588
|
-
endoreg_db/serializers/patient_finding/patient_finding_detail.py,sha256=
|
|
589
|
-
endoreg_db/serializers/patient_finding/patient_finding_intervention.py,sha256=
|
|
590
|
-
endoreg_db/serializers/patient_finding/patient_finding_list.py,sha256=
|
|
591
|
-
endoreg_db/serializers/patient_finding/patient_finding_write.py,sha256
|
|
592
|
-
endoreg_db/serializers/pdf/__init__.py,sha256=
|
|
575
|
+
endoreg_db/serializers/misc/stats.py,sha256=F60Z6mBslkhF5i2u6cnjNl5dbzZJ4oDpA8lY_8Zcy7Q,1235
|
|
576
|
+
endoreg_db/serializers/misc/translatable_field_mix_in.py,sha256=gywhZ5HnxSImDWMlLQemtAnKSiJrI-KJWFnPY7mrkxU,1701
|
|
577
|
+
endoreg_db/serializers/misc/upload_job.py,sha256=xSMgZsmAVqpYUiMrXYvdWRZbijfFb9NtOyOSjjR_fcU,2290
|
|
578
|
+
endoreg_db/serializers/patient/__init__.py,sha256=CFSv04ILbifVIBmeAO7KQQS-bEcetLcF9Q9S2Attst8,187
|
|
579
|
+
endoreg_db/serializers/patient/patient.py,sha256=aQlu9z8EAXBfzcVfOgUL4MQQyruzuj6c-umqixbqKVk,3265
|
|
580
|
+
endoreg_db/serializers/patient/patient_dropdown.py,sha256=wNHpLl3bBIN0f1uVBGA56vA47j2CXR76TF0w6xpZ3uk,1032
|
|
581
|
+
endoreg_db/serializers/patient_examination/__init__.py,sha256=HQpT7yBzC1OfAgZeEmRk02__IknHLxP4vQJbMz7K6mo,122
|
|
582
|
+
endoreg_db/serializers/patient_examination/patient_examination.py,sha256=mC5QL236dvDB1lH3Fo_S1v7wW6QSNY-qlIAa9hiRoEU,5828
|
|
583
|
+
endoreg_db/serializers/patient_finding/__init__.py,sha256=tVy9y2JVP1j_Lh5ZkkhX_PogeLmFsOqnMNGTddEKz2Y,659
|
|
584
|
+
endoreg_db/serializers/patient_finding/patient_finding.py,sha256=OIJNrwwQZodzS-DMx87Ld71crZRyP1hH83i2Dv05Xro,964
|
|
585
|
+
endoreg_db/serializers/patient_finding/patient_finding_classification.py,sha256=P4S2DkaMGH1uCKXdQ4eov8e94B_oQcbrANVLaqu6em8,1645
|
|
586
|
+
endoreg_db/serializers/patient_finding/patient_finding_detail.py,sha256=nLAbWf49Q_ygprNjXjiLeHhX_A8PAmgM8gZbavFtuQg,2118
|
|
587
|
+
endoreg_db/serializers/patient_finding/patient_finding_intervention.py,sha256=V7kKDbM6isMotA4KAEz1GVM4Yskve4lnCzMrKN-UJ-A,928
|
|
588
|
+
endoreg_db/serializers/patient_finding/patient_finding_list.py,sha256=Jvz9qR4CWo5n9IyZkOG3YeMmneeyIUXo7gv8xJviH_A,1275
|
|
589
|
+
endoreg_db/serializers/patient_finding/patient_finding_write.py,sha256=-yyOfQZU8VUOY-lzKEOE0p4PXRCrKH_yGu-u1j6hbNk,5658
|
|
590
|
+
endoreg_db/serializers/pdf/__init__.py,sha256=lyh0itUMfRqNs_fbf9aJsOBYYIqY1hetLypGaKdmfYg,102
|
|
593
591
|
endoreg_db/serializers/pdf/anony_text_validation.py,sha256=xxOHgExcbYOY6nYNpd5MEOzoQDy6xOeKtkwpZSfOdUc,3418
|
|
594
|
-
endoreg_db/serializers/requirements/requirement_schema.py,sha256=
|
|
592
|
+
endoreg_db/serializers/requirements/requirement_schema.py,sha256=ZMX0vNIHj7xRr3RdMnxzGqpcQm1rR1-Xw7iMKqtYXVk,400
|
|
595
593
|
endoreg_db/serializers/requirements/requirement_sets.py,sha256=VX2ajfAqdW2G32LxEReFueEWBngTXY09LOZ6opEmwds,3525
|
|
596
|
-
endoreg_db/serializers/video/__init__.py,sha256=
|
|
597
|
-
endoreg_db/serializers/video/
|
|
598
|
-
endoreg_db/serializers/video/video_file_brief.py,sha256=
|
|
599
|
-
endoreg_db/serializers/video/video_file_detail.py,sha256=
|
|
600
|
-
endoreg_db/serializers/video/video_file_list.py,sha256=
|
|
601
|
-
endoreg_db/serializers/video/video_processing_history.py,sha256=
|
|
602
|
-
endoreg_db/services/__init__.py,sha256=
|
|
603
|
-
endoreg_db/services/anonymization.py,sha256=
|
|
604
|
-
endoreg_db/services/examination_evaluation.py,sha256=
|
|
594
|
+
endoreg_db/serializers/video/__init__.py,sha256=d_UZBkXTVxImBbzEvrDKK8d_YA3WXfqp6At5puKjOrQ,95
|
|
595
|
+
endoreg_db/serializers/video/video_file.py,sha256=hGAHRri9ED6cuSKY9WfDCxeSmYCZrql4BdgiB6M1YJ0,12162
|
|
596
|
+
endoreg_db/serializers/video/video_file_brief.py,sha256=uktUE6MnCfi_uCbHRXQhrd8Hb6FHX3Kcz9giRC9Vvj0,319
|
|
597
|
+
endoreg_db/serializers/video/video_file_detail.py,sha256=K-zzZjuY_H7_1WxqwmxcC57ChPkjUJ7Hm685627lkg8,3688
|
|
598
|
+
endoreg_db/serializers/video/video_file_list.py,sha256=ZTxiRD0GKRlfVBrRFYnhIOYEZqTbi_-A-hatHFdbCV4,3303
|
|
599
|
+
endoreg_db/serializers/video/video_processing_history.py,sha256=YbZglINz0F2adOvyKR2wMKln647T0aoxn0CIyajmFSc,5639
|
|
600
|
+
endoreg_db/services/__init__.py,sha256=XaerOUW62EgRhFySfzCwkaXi5Tuq02FNO2MymPxdQMc,137
|
|
601
|
+
endoreg_db/services/anonymization.py,sha256=wl0nsRYUrZP7hrLZkzyX3ed7uRIYggO8Fi9WpIlT81s,9479
|
|
602
|
+
endoreg_db/services/examination_evaluation.py,sha256=x0VE0ai84K-JItyVK3HAi31v_xoG_47zaT_IdboMaoo,6038
|
|
605
603
|
endoreg_db/services/finding_description_service.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
606
604
|
endoreg_db/services/lookup_service.py,sha256=e_groyWlWKpdtShvdtJe_7tv1GMGT60XHJ3dqXtyDdE,16480
|
|
607
605
|
endoreg_db/services/lookup_store.py,sha256=l3AekFLMqoCIVLuRrh7-LwvpJxxYmCJk5G22Os3f6Qo,8965
|
|
606
|
+
endoreg_db/services/model_meta_from_hf.py,sha256=qsS2pE8_p2aZCAVOxUovxoWdM4Y7KvkTdh_tQGbPmNA,2336
|
|
608
607
|
endoreg_db/services/pdf_import.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
609
|
-
endoreg_db/services/polling_coordinator.py,sha256=
|
|
610
|
-
endoreg_db/services/pseudonym_service.py,sha256=
|
|
611
|
-
endoreg_db/services/report_import.py,sha256=
|
|
612
|
-
endoreg_db/services/segment_sync.py,sha256
|
|
613
|
-
endoreg_db/services/video_import.py,sha256=
|
|
614
|
-
endoreg_db/services/__old/pdf_import.py,sha256=VTik-8SlY44ebnzIZ9Q9aJYiyrIduR916pqznh11T40,59990
|
|
615
|
-
endoreg_db/services/__old/video_import.py,sha256=3tFC5nLgDExAQDAa4ZZR83awEOWdGGFO36puiAVBV_0,54426
|
|
616
|
-
endoreg_db/tasks/upload_tasks.py,sha256=faE2EFYnSCnjRx3qTIYKqZFhMcibv4Mfrs0V6oOqfyc,7681
|
|
617
|
-
endoreg_db/tasks/video_ingest.py,sha256=i9KJfEh46dK0EXj-qijUxt6EP2PWIop8fH8gdQ4grls,5381
|
|
618
|
-
endoreg_db/tasks/video_processing_tasks.py,sha256=rZ7Kr49bAR4Q-vALO2SURebrhcJ5hSFGwjF4aULrOao,14089
|
|
608
|
+
endoreg_db/services/polling_coordinator.py,sha256=yXJBo56G3KV932fGOANzh0BovweEvuvhvkPWpx1M3ZQ,10710
|
|
609
|
+
endoreg_db/services/pseudonym_service.py,sha256=YX2gDUEsJ3mGToWyokJipVL6K_JVVUDWISLZVEzqarY,3070
|
|
610
|
+
endoreg_db/services/report_import.py,sha256=eZafZjwU4Jhzx6dh1gvS34n7Zw8qbgzcHPT7MV8HmxI,337
|
|
611
|
+
endoreg_db/services/segment_sync.py,sha256=-S7oAzhxz_J0aiUaAlXpSlUumtufcGrg_n-fS27yqlM,6438
|
|
612
|
+
endoreg_db/services/video_import.py,sha256=WlCwR3kw6SctBFarH9DTlFUx-pqCBiaOkoVdWh5xMoA,318
|
|
619
613
|
endoreg_db/templates/timeline.html,sha256=H9VXKOecCzqcWWkpNIZXFI29ztg-oxV5uvxMglgoClk,6167
|
|
620
614
|
endoreg_db/templates/admin/patient_finding_intervention.html,sha256=F3JUKm3HhWIf_xoZZ-SET5d5ZDlm2jMM8g909w1dnYc,10164
|
|
621
615
|
endoreg_db/templates/admin/start_examination.html,sha256=3K4wirul9KNyB5mN9cpfCSCAyAD6ro19GwxFOY5sZ3A,267
|
|
622
|
-
endoreg_db/urls/__init__.py,sha256=
|
|
623
|
-
endoreg_db/urls/ai.py,sha256=
|
|
624
|
-
endoreg_db/urls/anonymization.py,sha256=
|
|
625
|
-
endoreg_db/urls/auth.py,sha256=
|
|
626
|
-
endoreg_db/urls/classification.py,sha256=
|
|
627
|
-
endoreg_db/urls/examination.py,sha256=
|
|
628
|
-
endoreg_db/urls/media.py,sha256=
|
|
629
|
-
endoreg_db/urls/patient.py,sha256=
|
|
630
|
-
endoreg_db/urls/requirements.py,sha256=
|
|
631
|
-
endoreg_db/urls/root_urls.py,sha256=
|
|
632
|
-
endoreg_db/urls/stats.py,sha256=
|
|
633
|
-
endoreg_db/urls/upload.py,sha256=
|
|
634
|
-
endoreg_db/utils/__init__.py,sha256=
|
|
635
|
-
endoreg_db/utils/calc_duration_seconds.py,sha256=
|
|
636
|
-
endoreg_db/utils/check_video_files.py,sha256=
|
|
637
|
-
endoreg_db/utils/cropping.py,sha256=
|
|
638
|
-
endoreg_db/utils/dataloader.py,sha256=
|
|
639
|
-
endoreg_db/utils/dates.py,sha256=
|
|
640
|
-
endoreg_db/utils/env.py,sha256=
|
|
641
|
-
endoreg_db/utils/extract_specific_frames.py,sha256
|
|
642
|
-
endoreg_db/utils/file_operations.py,sha256=
|
|
643
|
-
endoreg_db/utils/fix_video_path_direct.py,sha256=
|
|
644
|
-
endoreg_db/utils/frame_anonymization_utils.py,sha256=
|
|
645
|
-
endoreg_db/utils/hashs.py,sha256
|
|
616
|
+
endoreg_db/urls/__init__.py,sha256=zbobDNSvtFFgfiF4OtlSspoP6Chgv72S1pdVzBFzeTE,2122
|
|
617
|
+
endoreg_db/urls/ai.py,sha256=FXZM-bwiJiK7NLcEeBVcSuRibPrf33ytzLzDuU7QmKE,567
|
|
618
|
+
endoreg_db/urls/anonymization.py,sha256=THBK7_OXgtei5urWBuRZBEoBJmgPp10dd3SsDCg9osI,2215
|
|
619
|
+
endoreg_db/urls/auth.py,sha256=Il4d7yPt3aL_iccE7GCed3Pvg4UaXJrPBAP7WWxQuXM,440
|
|
620
|
+
endoreg_db/urls/classification.py,sha256=UIgOBmN61mrMChMQTgoy8F9vJm32W-gXiA0PpuxXD9k,1756
|
|
621
|
+
endoreg_db/urls/examination.py,sha256=VvekVzucCEKXiE5SOCwKAhyWKACre_6DBKrtVx0EANQ,2434
|
|
622
|
+
endoreg_db/urls/media.py,sha256=J59gcX0fDQ3JAB-T8jBd_ciQAZ0KS8Wr1dKwMLKAiPI,11442
|
|
623
|
+
endoreg_db/urls/patient.py,sha256=Msnll5sBSte4KSkzNiLMoeXVUGE_XMp8YTDAWkRj8x8,620
|
|
624
|
+
endoreg_db/urls/requirements.py,sha256=NQfXAnt6R3sL23KyLwaBStjzVgb0lurCnFZ2FZbp7ik,469
|
|
625
|
+
endoreg_db/urls/root_urls.py,sha256=wfBK8f9im6Rle6-GQ_2CihbtR9eYrcAka3rVopwFnTs,1015
|
|
626
|
+
endoreg_db/urls/stats.py,sha256=nVktykqJm4kz-oaDQJcqokAN-Tk9s8EZCgXA9G1qZv4,1907
|
|
627
|
+
endoreg_db/urls/upload.py,sha256=kYTESzjo9gJXiLYrjJ_14pBZW6kgsZGY5WTA_udYIkM,302
|
|
628
|
+
endoreg_db/utils/__init__.py,sha256=neEMMjGBTYV_SGn1c8oHfLAsOB6jHTbzy0qqnAQkH1Q,2245
|
|
629
|
+
endoreg_db/utils/calc_duration_seconds.py,sha256=JQlAD4ClGXAxvl7res5bNtEx7yUI8Bxzwclz_yrRNtE,703
|
|
630
|
+
endoreg_db/utils/check_video_files.py,sha256=soiVssgq5SodrcuJBaGrTmkKM7KZEUuJ-k_x4w2PQ0Q,5987
|
|
631
|
+
endoreg_db/utils/cropping.py,sha256=3apNzKmXs_SnuZ_QXHlOmwHfrGQXTc6pn2gHPkMyv-8,1122
|
|
632
|
+
endoreg_db/utils/dataloader.py,sha256=nwU811WzSJC7_2CHD0UrvBp-EqPq8LDWKXLfyldkXUA,11182
|
|
633
|
+
endoreg_db/utils/dates.py,sha256=UdxHu-gHZ6jZl-jjU7QBv0W3KmFqjVSXAIcf4ykWZvg,1732
|
|
634
|
+
endoreg_db/utils/env.py,sha256=LYB-hQKWCaWqlec92dGDQpjo5XrqeFonPfGF0eBx9Tc,1288
|
|
635
|
+
endoreg_db/utils/extract_specific_frames.py,sha256=-qG5tW6JpVf2KMR8rceFHM5xMchn7eUPnKWjjGQwqjc,2366
|
|
636
|
+
endoreg_db/utils/file_operations.py,sha256=wVpxox3OrHsnLxE6OK_pY02PXt7qWzl8gkliCyC1s-c,1995
|
|
637
|
+
endoreg_db/utils/fix_video_path_direct.py,sha256=KeGSMHBwWHJ-YyDowtJTmQgX1MzyS7-2G7pLzTLmWFY,5700
|
|
638
|
+
endoreg_db/utils/frame_anonymization_utils.py,sha256=qsq9Duhqmq-J6ScNb-PvLsLUHOyRQ1uPxymj2kbhj3w,13008
|
|
639
|
+
endoreg_db/utils/hashs.py,sha256=-byv1hPz70mfcvQ-T9i-efw_T7Ut3iQXrXMuSvaz2Ps,4131
|
|
646
640
|
endoreg_db/utils/mime_types.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
647
641
|
endoreg_db/utils/names.py,sha256=R-e8963IZRHhWPpa8gX2hbCq6o6agn5u3bd48wZ9FoM,2860
|
|
648
|
-
endoreg_db/utils/ocr.py,sha256=
|
|
649
|
-
endoreg_db/utils/
|
|
650
|
-
endoreg_db/utils/
|
|
651
|
-
endoreg_db/utils/
|
|
642
|
+
endoreg_db/utils/ocr.py,sha256=NN54yQnf9LeMpLQ2PDnPYhFaRIq9awrAmJxowHWWcgk,7067
|
|
643
|
+
endoreg_db/utils/operation_log.py,sha256=4lGnn9UboNRpsxess0bpmZY9-vwa9MXbNS7jCeOAQ1Y,1842
|
|
644
|
+
endoreg_db/utils/parse_and_generate_yaml.py,sha256=Im7TMk5YAiN4rpYH16Nie0WWTVOGs62WS--iHaIUK4A,1609
|
|
645
|
+
endoreg_db/utils/paths.py,sha256=kHvspYvY1pARPuGTjV0GLhkb4oDsLmkZrNoNc6E98OQ,4963
|
|
646
|
+
endoreg_db/utils/permissions.py,sha256=9a6T-uOTn2k8O1oN8dRROIxt1UX9cyHKClxTAO7JO04,5234
|
|
652
647
|
endoreg_db/utils/requirement_helpers.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
653
|
-
endoreg_db/utils/setup_config.py,sha256=
|
|
654
|
-
endoreg_db/utils/storage.py,sha256=
|
|
655
|
-
endoreg_db/utils/translation.py,sha256=
|
|
656
|
-
endoreg_db/utils/uuid.py,sha256=
|
|
657
|
-
endoreg_db/utils/validate_endo_roi.py,sha256=
|
|
658
|
-
endoreg_db/utils/validate_subcategory_dict.py,sha256=
|
|
659
|
-
endoreg_db/utils/validate_video_detailed.py,sha256=
|
|
660
|
-
endoreg_db/utils/ai/__init__.py,sha256=
|
|
661
|
-
endoreg_db/utils/ai/
|
|
662
|
-
endoreg_db/utils/ai/
|
|
663
|
-
endoreg_db/utils/ai/
|
|
648
|
+
endoreg_db/utils/setup_config.py,sha256=qHH0mS02IpR6UCb-NHwExm3I0LF3EnyjO5rqME1Qz6U,7119
|
|
649
|
+
endoreg_db/utils/storage.py,sha256=ecaHT-NjAdI16FkBgmFOeV7eChPyuxh_Bsx4_kl-sZg,3345
|
|
650
|
+
endoreg_db/utils/translation.py,sha256=KUwlXHE0pvA30KiRPBZSe8oOdKjVZSlZtUH-bHeGeeA,1320
|
|
651
|
+
endoreg_db/utils/uuid.py,sha256=fBpCTvjGP6i0acsDM66p7qKcxSWhTMOsP52l_GabFFU,54
|
|
652
|
+
endoreg_db/utils/validate_endo_roi.py,sha256=rqf2hvNFfZ9TMAU8kpbrvWjV0h-fQwbJl4eb9MTyyjU,1159
|
|
653
|
+
endoreg_db/utils/validate_subcategory_dict.py,sha256=IRJLmna2Z3-2aIOlCX7awLe2yGKXOz0Set2onEiplt8,3384
|
|
654
|
+
endoreg_db/utils/validate_video_detailed.py,sha256=LmpYHPrqwdeQaBxqeLi6j5P6J3Thr0ig2v9Exx84ulI,14520
|
|
655
|
+
endoreg_db/utils/ai/__init__.py,sha256=N906B7R1LfuY79a1kWEnUTcUvYVVioFSgm5OhF6BhFw,243
|
|
656
|
+
endoreg_db/utils/ai/data_loader_for_model_input.py,sha256=NKt8ciJZaMZA3tE-ojL_ODgHANIpivAqvXOcNtryXPQ,9234
|
|
657
|
+
endoreg_db/utils/ai/data_loader_for_model_training.py,sha256=NKt8ciJZaMZA3tE-ojL_ODgHANIpivAqvXOcNtryXPQ,9234
|
|
658
|
+
endoreg_db/utils/ai/get.py,sha256=F_X1pdJsZcE_YmvvEPRFmWxFDgO4bsnmDggJDDABG1E,205
|
|
659
|
+
endoreg_db/utils/ai/inference_dataset.py,sha256=Zd77Zu0GM-dAUTk5HGBLBQ77hfPFB-80n9Hj_oraU2s,1776
|
|
660
|
+
endoreg_db/utils/ai/multilabel_classification_net.py,sha256=eBGoLy3hlpAW6Bdp6fsde_tLW5zXCOj9DA3QjXat3uI,9744
|
|
664
661
|
endoreg_db/utils/ai/postprocess.py,sha256=RhHyICu0Z6oAjqbrmAN_G8Jaon_UDBAHI-3U1DuHM88,2317
|
|
665
|
-
endoreg_db/utils/ai/predict.py,sha256=
|
|
666
|
-
endoreg_db/utils/ai/preprocess.py,sha256=
|
|
662
|
+
endoreg_db/utils/ai/predict.py,sha256=LDMKEwMdBTBoQeNDcH9GqiFLTHoBeSckt27tdUAKrtY,10311
|
|
663
|
+
endoreg_db/utils/ai/preprocess.py,sha256=gwDd3O4RC6HXWMXPvKt3OFQd_39338PhpAMIgLWXp2Q,2329
|
|
664
|
+
endoreg_db/utils/ai/model_training/config.py,sha256=jTl07B44rBjI0MJb03HH4loa-GAnQO3LIIU9XlVapnE,4502
|
|
665
|
+
endoreg_db/utils/ai/model_training/dataset.py,sha256=BSHvveOuz2Qt6nrqUk7-imbSObUmC7pK1ZcAi83LaWk,2572
|
|
666
|
+
endoreg_db/utils/ai/model_training/losses.py,sha256=TknQvH41nmnePbkssPyLw8JyMrVbncv4hHD7QiF4VMo,1761
|
|
667
|
+
endoreg_db/utils/ai/model_training/metrics.py,sha256=8XHx9aaySn3ZCCfgZMgOCdy-MCc5-ges455C_DIPgMo,2136
|
|
668
|
+
endoreg_db/utils/ai/model_training/model_backbones.py,sha256=Nt3yW_53jd8wm437cqlgBWRcSnG-1T_0yeFmimnuL7w,5150
|
|
669
|
+
endoreg_db/utils/ai/model_training/model_gastronet_resnet.py,sha256=Y32SeS1L7qBPcymDTVcGqJmhye8-o6r25b5WMfErtcw,3990
|
|
670
|
+
endoreg_db/utils/ai/model_training/trainer_gastronet_multilabel.py,sha256=IPvEBW5s5Z01rKIelEAq7czlJfroJ4mw07iaL0GABCM,27070
|
|
667
671
|
endoreg_db/utils/case_generator/__init__.py,sha256=gFAm9wvVySBnEP3_AOY6WeVMOSb7vGukZbqZak3lHa4,99
|
|
668
|
-
endoreg_db/utils/case_generator/lab_sample_factory.py,sha256=
|
|
669
|
-
endoreg_db/utils/defaults/set_default_center.py,sha256=
|
|
672
|
+
endoreg_db/utils/case_generator/lab_sample_factory.py,sha256=aSh4LHEJ3HhjqYxgFav-zoLyWlQVUGr5amRqaIcSqoo,883
|
|
673
|
+
endoreg_db/utils/defaults/set_default_center.py,sha256=KWo63ZeV340nXciN4p-NhWVdXbnHLQBFe5EmdPcwaF8,1011
|
|
670
674
|
endoreg_db/utils/links/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
671
|
-
endoreg_db/utils/links/requirement_link.py,sha256=
|
|
675
|
+
endoreg_db/utils/links/requirement_link.py,sha256=PxviPSBbPFHlfxUxeexfkxAPNzmsl4fnK8V1VYA7ptU,9989
|
|
672
676
|
endoreg_db/utils/pipelines/Readme.md,sha256=QhyH472oxANH4C6Z7BAzh-N2Jg2nYBnG5Df8PTnJoEs,8275
|
|
673
677
|
endoreg_db/utils/pipelines/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
674
|
-
endoreg_db/utils/pipelines/process_video_dir.py,sha256=
|
|
678
|
+
endoreg_db/utils/pipelines/process_video_dir.py,sha256=_eMnhK_W2_UZMugLqFUZIvnvIrPj44POa_rRYd9n9CY,6003
|
|
675
679
|
endoreg_db/utils/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
676
|
-
endoreg_db/utils/product/sum_emissions.py,sha256=
|
|
677
|
-
endoreg_db/utils/product/sum_weights.py,sha256=
|
|
678
|
-
endoreg_db/utils/pydantic_models/__init__.py,sha256=
|
|
680
|
+
endoreg_db/utils/product/sum_emissions.py,sha256=acWVkGKjHQ8XM9BiIINvohRrpLBfZyMqD66_IVEAtkc,736
|
|
681
|
+
endoreg_db/utils/product/sum_weights.py,sha256=doy2TLMzmt1nCZfoGeL5cX8zC7Fk_o0dWSNA4GS1Do4,592
|
|
682
|
+
endoreg_db/utils/pydantic_models/__init__.py,sha256=DDzjt-ZssCJUaHUPxNDH07GTwkQ7krt3OzMhV23UlAk,91
|
|
679
683
|
endoreg_db/utils/pydantic_models/db_config.py,sha256=Hg0ZlSJt-a1lRawO_jV5viPqnA5B_4Stak0TEBD-L9s,1743
|
|
680
684
|
endoreg_db/utils/requirement_operator_logic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
681
|
-
endoreg_db/utils/requirement_operator_logic/new_operator_logic.py,sha256=
|
|
682
|
-
endoreg_db/utils/requirement_operator_logic/_old/lab_value_operators.py,sha256=
|
|
683
|
-
endoreg_db/utils/requirement_operator_logic/_old/model_evaluators.py,sha256=
|
|
684
|
-
endoreg_db/utils/video/__init__.py,sha256=
|
|
685
|
-
endoreg_db/utils/video/extract_frames.py,sha256=
|
|
685
|
+
endoreg_db/utils/requirement_operator_logic/new_operator_logic.py,sha256=vqg7xhn3G1TFmwMmxjWcJAOYubWbUUavFzagZOoP5UA,3544
|
|
686
|
+
endoreg_db/utils/requirement_operator_logic/_old/lab_value_operators.py,sha256=Wz-PPC3Ik0-7fRsqKE2J3bw_ph5iIGKCt3ODwJu1ftY,25949
|
|
687
|
+
endoreg_db/utils/requirement_operator_logic/_old/model_evaluators.py,sha256=uriOPoGwEhS1lozPTvrwuzT-zt5uHwJRViv7axHbCR4,32036
|
|
688
|
+
endoreg_db/utils/video/__init__.py,sha256=OXLdLN5fyjYIgyqbZhGHxu43rCT8iwyp7I66g5-_8s4,843
|
|
689
|
+
endoreg_db/utils/video/extract_frames.py,sha256=0hLCe1B0F2S-WkiRbJCJnYwYZmfLb2Y2m8TVHABlp4o,3263
|
|
686
690
|
endoreg_db/utils/video/ffmpeg_wrapper.py,sha256=jwGMhw1C9u16w60N2df6lsYydx7-z0ZjyZUfVJkEjBM,35310
|
|
687
|
-
endoreg_db/utils/video/names.py,sha256=
|
|
688
|
-
endoreg_db/utils/video/streaming_processor.py,sha256=
|
|
689
|
-
endoreg_db/utils/video/video_splitter.py,sha256
|
|
690
|
-
endoreg_db/views/Frames_NICE_and_PARIS_classifications_views.py,sha256=
|
|
691
|
-
endoreg_db/views/__init__.py,sha256=
|
|
692
|
-
endoreg_db/views/
|
|
693
|
-
endoreg_db/views/
|
|
694
|
-
endoreg_db/views/anonymization/
|
|
695
|
-
endoreg_db/views/anonymization/
|
|
696
|
-
endoreg_db/views/
|
|
697
|
-
endoreg_db/views/
|
|
698
|
-
endoreg_db/views/
|
|
699
|
-
endoreg_db/views/
|
|
700
|
-
endoreg_db/views/examination/
|
|
701
|
-
endoreg_db/views/examination/
|
|
702
|
-
endoreg_db/views/examination/
|
|
703
|
-
endoreg_db/views/examination/
|
|
704
|
-
endoreg_db/views/examination/
|
|
705
|
-
endoreg_db/views/examination/
|
|
706
|
-
endoreg_db/views/
|
|
707
|
-
endoreg_db/views/
|
|
708
|
-
endoreg_db/views/finding/
|
|
709
|
-
endoreg_db/views/finding/
|
|
710
|
-
endoreg_db/views/
|
|
711
|
-
endoreg_db/views/finding/get_interventions.py,sha256=ZrULEYV3MKDUVxoP2EobV8faB--HpmziAgei5yF0kz8,694
|
|
712
|
-
endoreg_db/views/finding_classification/__init__.py,sha256=dxMyjCqXFyOs4p1MrkJrPGAL9Lekxtv6UIzCPsc6Fj0,389
|
|
691
|
+
endoreg_db/utils/video/names.py,sha256=058sB-5t71QVFAifWf_3qEKtxmwcQYEe68IyEt_Izdk,1472
|
|
692
|
+
endoreg_db/utils/video/streaming_processor.py,sha256=Su09Xx8FOleIHxkP9Ub--d9KWT5u8o8eEBcKHrl3PzY,14205
|
|
693
|
+
endoreg_db/utils/video/video_splitter.py,sha256=-E8u-4WLhFGq8qJjB1KYBte25g9SiB1IbWbATGUU86c,3790
|
|
694
|
+
endoreg_db/views/Frames_NICE_and_PARIS_classifications_views.py,sha256=yhHC0m4YKlVy9OWYVPEyvD3P-g38fDV3BLSqKC6p7uU,8899
|
|
695
|
+
endoreg_db/views/__init__.py,sha256=uEozDpP3t9Q64c6PBv1e4InQRY4qpHvYWaX27k4rr7A,4882
|
|
696
|
+
endoreg_db/views/anonymization/__init__.py,sha256=TUfvKhVW9K2McHSzUfWju5xQBZFLtk2OHqtKJlpRkII,716
|
|
697
|
+
endoreg_db/views/anonymization/media_management.py,sha256=6xMLqMUO--LpsFoRk7N6B_Hkb090HRuIpNZdp78xKc8,17093
|
|
698
|
+
endoreg_db/views/anonymization/overview.py,sha256=9t_P-6GHNc-TKpTi5wnsuTdXFtAaR4dLCVEhw0czB9M,9735
|
|
699
|
+
endoreg_db/views/anonymization/validate.py,sha256=FN4LLRDnzbzVPOnEs0-XNyIyTFhjDHtpYD2wM4CpotA,13572
|
|
700
|
+
endoreg_db/views/auth/__init__.py,sha256=rk7E4moJ7Rldg1yHHM80CChQhsURRw-dxI5QllRtdY4,215
|
|
701
|
+
endoreg_db/views/auth/keycloak.py,sha256=65RuxjE5P5Yr4dxvWomdwQJ91JnNR342tDRiWf60Q_I,4205
|
|
702
|
+
endoreg_db/views/examination/__init__.py,sha256=ato94W4tmuIZXv0bpXk9PlnvsgemzwD-UJCyieJAPSI,1203
|
|
703
|
+
endoreg_db/views/examination/examination.py,sha256=YLrjGE8dKRVmL3eJAd4npJWxBdytIOzvjCl-di1C184,1384
|
|
704
|
+
endoreg_db/views/examination/examination_manifest_cache.py,sha256=LFhXwN_A2gfpWxrV0kP2MfvM4rEHr9DZhGBzjXjsy3k,960
|
|
705
|
+
endoreg_db/views/examination/get_finding_classification_choices.py,sha256=yotUKpJoDv4uAeqoUEcakDX-EllFdoRKJysPMV6qSz8,2637
|
|
706
|
+
endoreg_db/views/examination/get_finding_classifications.py,sha256=DaAMmK02moMTEVLvCKVsvHtE0W_KkYc7zWG7i8wrvRA,1534
|
|
707
|
+
endoreg_db/views/examination/get_findings.py,sha256=iDKA1uN-8F5hvz9OqOmHJCu2g1F9Eulo936ULjsmUBM,1513
|
|
708
|
+
endoreg_db/views/examination/get_instruments.py,sha256=5ey3XXTptMgaFJQu-jGAYRI7J_AqpSGxycoNgMzcFoM,600
|
|
709
|
+
endoreg_db/views/examination/get_interventions.py,sha256=jqPDOxYjwDDVfCkIGkRXK821uxMyAQJcibjGXhcrLZ0,545
|
|
710
|
+
endoreg_db/views/finding/__init__.py,sha256=jYtrgBrn8jqZKKevRnDudwpKXWTzQ-xTOO4lEdbxu2Q,275
|
|
711
|
+
endoreg_db/views/finding/finding.py,sha256=5ZQpSC9nU2QRbyACAIMS12ntz7ZlncQscx44RqJqByM,5056
|
|
712
|
+
endoreg_db/views/finding/get_classifications.py,sha256=ZFUadImVTVsYgjtJysb6NGa7nxZwV6KCPpXwgeIqnNQ,444
|
|
713
|
+
endoreg_db/views/finding/get_interventions.py,sha256=LtfjLzI7FIcRWJh2uX3xFicgIcAomTNVPdQGKbAezyA,695
|
|
714
|
+
endoreg_db/views/finding_classification/__init__.py,sha256=cQkPmbMs-XoHyqdkKniMu-75Wxz7rJKlhJ4iyLF8GK0,394
|
|
713
715
|
endoreg_db/views/finding_classification/base.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
714
|
-
endoreg_db/views/finding_classification/finding_classification.py,sha256=
|
|
715
|
-
endoreg_db/views/finding_classification/get_classification_choices.py,sha256=
|
|
716
|
-
endoreg_db/views/media/__init__.py,sha256=
|
|
717
|
-
endoreg_db/views/media/pdf_media.py,sha256=
|
|
718
|
-
endoreg_db/views/media/sensitive_metadata.py,sha256=
|
|
719
|
-
endoreg_db/views/media/video_media.py,sha256=
|
|
720
|
-
endoreg_db/views/meta/__init__.py,sha256=
|
|
721
|
-
endoreg_db/views/meta/sensitive_meta_list.py,sha256=
|
|
722
|
-
endoreg_db/views/meta/sensitive_meta_verification.py,sha256=
|
|
723
|
-
endoreg_db/views/misc/__init__.py,sha256=
|
|
724
|
-
endoreg_db/views/misc/center.py,sha256=
|
|
725
|
-
endoreg_db/views/misc/csrf.py,sha256=
|
|
726
|
-
endoreg_db/views/misc/gender.py,sha256=
|
|
727
|
-
endoreg_db/views/misc/stats.py,sha256=
|
|
728
|
-
endoreg_db/views/misc/translation.py,sha256=v5HtOck7sQ53hj3m-q6Wlyp1zfgF-OkqhxoixH9JCvA,6359
|
|
716
|
+
endoreg_db/views/finding_classification/finding_classification.py,sha256=l2umSXDWJOvVq7s3rf398EEQWT9hEfWDcZXkZv4wdt8,1544
|
|
717
|
+
endoreg_db/views/finding_classification/get_classification_choices.py,sha256=f6V8JnMdcupYFpnoV881aSaZ6dF6SRDGsfas3cd8DIE,1884
|
|
718
|
+
endoreg_db/views/media/__init__.py,sha256=Jvhi883YXra-fNT8zsTFd0cZAqyKjcS9J7YVetyWi7I,888
|
|
719
|
+
endoreg_db/views/media/pdf_media.py,sha256=ZerXzf1OGLaqn8f0Kvy09t3AyBRhrUSxjLq8XV1E1_M,14387
|
|
720
|
+
endoreg_db/views/media/sensitive_metadata.py,sha256=Cr8XtTOwn_YqnSf5B0bY1NtpQkSyM45152PsH4qlWI0,11871
|
|
721
|
+
endoreg_db/views/media/video_media.py,sha256=R9ifovE5YnTprPJazQr1jo-hiyn-9GZBBc9MtIdgrk0,9505
|
|
722
|
+
endoreg_db/views/meta/__init__.py,sha256=R1QiQ-t5J0pYEKlLN_OqhLyD-BQTXA6a_B7OroHouhw,207
|
|
723
|
+
endoreg_db/views/meta/sensitive_meta_list.py,sha256=tH4RPwl-F-eKAt5YaIoYSmDs2eyXuvvT7H7FGAOkfrc,3585
|
|
724
|
+
endoreg_db/views/meta/sensitive_meta_verification.py,sha256=tSbi8rg_jG4c3MRdk8kQG_VgqvkielOJixmGMKkXE1Y,2554
|
|
725
|
+
endoreg_db/views/misc/__init__.py,sha256=aeeM2Ge8CYauIaNUd_F33OBJ2f23k-BrPk2TXqCuMjw,593
|
|
726
|
+
endoreg_db/views/misc/center.py,sha256=S-SIlP8_JN_CS7Zq9tojv7R6VcA97i_tR5cy_RmyQ-g,432
|
|
727
|
+
endoreg_db/views/misc/csrf.py,sha256=IVYsEKbvSsF899CWiRa2nEdIEdRj-mNuNvy800Q0dH8,243
|
|
728
|
+
endoreg_db/views/misc/gender.py,sha256=6s_6xQNawFF7Jw1F6ENQtzeMQah8V7LFN6Alwe1zDC4,493
|
|
729
|
+
endoreg_db/views/misc/stats.py,sha256=okbH6kyBkI39sYLOujdQ6Nrm2RWFHBDHFseupVDzxtM,8923
|
|
729
730
|
endoreg_db/views/misc/upload_views.py,sha256=86o2JoU6tP0OZfd5YeQqAbCEYOzWQY4m3_0YbMldOaI,8456
|
|
730
|
-
endoreg_db/views/patient/__init__.py,sha256=
|
|
731
|
-
endoreg_db/views/patient/patient.py,sha256=
|
|
732
|
-
endoreg_db/views/patient_examination/__init__.py,sha256=
|
|
733
|
-
endoreg_db/views/patient_examination/patient_examination.py,sha256=
|
|
734
|
-
endoreg_db/views/patient_examination/patient_examination_create.py,sha256=
|
|
735
|
-
endoreg_db/views/patient_examination/patient_examination_detail.py,sha256=
|
|
736
|
-
endoreg_db/views/patient_examination/patient_examination_list.py,sha256=
|
|
737
|
-
endoreg_db/views/patient_examination/video.py,sha256=
|
|
738
|
-
endoreg_db/views/patient_finding/__init__.py,sha256=
|
|
731
|
+
endoreg_db/views/patient/__init__.py,sha256=OmNJJXtBrGOi8TxDyPlCfNUvCRvini4sUX0kwnbXuBc,66
|
|
732
|
+
endoreg_db/views/patient/patient.py,sha256=XKDW61W7MFg_nhsQRH5DFN8iWJqAM1lB4GC9LvIU3Dg,9489
|
|
733
|
+
endoreg_db/views/patient_examination/__init__.py,sha256=F9TH694b_l2YLxfj44i3J01738PnUw8v4pBy_21Gs04,402
|
|
734
|
+
endoreg_db/views/patient_examination/patient_examination.py,sha256=cHKILH-rD_-wqVk69Nd8olpkKE8iizeyk2mQ1pUpYSQ,5725
|
|
735
|
+
endoreg_db/views/patient_examination/patient_examination_create.py,sha256=cO2F361TTaK9YpR2IZQDJL_giZCOnAke0A_EAPS0LVY,2108
|
|
736
|
+
endoreg_db/views/patient_examination/patient_examination_detail.py,sha256=HyPH2oG5tmvAOQakp-5IZI6kxyCy2bpujpANT7z2XXM,2296
|
|
737
|
+
endoreg_db/views/patient_examination/patient_examination_list.py,sha256=Ve-8Bv_BvsSbtivR0AHhJHmwYshTjiNRnWb-uP7wJKQ,2374
|
|
738
|
+
endoreg_db/views/patient_examination/video.py,sha256=OSpS9v9cerjCDHdj6vEovgKPkrPXuwe7Fhq2_lGZTOc,9364
|
|
739
|
+
endoreg_db/views/patient_finding/__init__.py,sha256=iW5tvW72phbkDNZeuh49uegSZsM479X7Irv3PDmQcu0,203
|
|
739
740
|
endoreg_db/views/patient_finding/base.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
740
|
-
endoreg_db/views/patient_finding/patient_finding.py,sha256=
|
|
741
|
-
endoreg_db/views/patient_finding/patient_finding_optimized.py,sha256
|
|
742
|
-
endoreg_db/views/patient_finding_classification/__init__.py,sha256=
|
|
743
|
-
endoreg_db/views/patient_finding_classification/pfc_create.py,sha256=
|
|
741
|
+
endoreg_db/views/patient_finding/patient_finding.py,sha256=q2eNX_kN6hxKru51phO_VKYFf6CKGow2-AWAT1aXMHk,2560
|
|
742
|
+
endoreg_db/views/patient_finding/patient_finding_optimized.py,sha256=bURUnWVWS1JN9rlHOLmlPd1yRRuZU-34xg7FPPR7QfY,10876
|
|
743
|
+
endoreg_db/views/patient_finding_classification/__init__.py,sha256=C_pp0zhobMINHwDoSX1HPfzPF2q4ahB5YxjMUB491AU,122
|
|
744
|
+
endoreg_db/views/patient_finding_classification/pfc_create.py,sha256=cPKEgEbx7K37C4hEVSkvo4ulSjmmCWrrJeLwboXn2Do,2623
|
|
744
745
|
endoreg_db/views/report/__init__.py,sha256=PPXKbiawphRvWSXaFYnCrDrTautyD-l8TlpjW82W41s,150
|
|
745
|
-
endoreg_db/views/report/reimport.py,sha256=
|
|
746
|
-
endoreg_db/views/report/report_stream.py,sha256=
|
|
747
|
-
endoreg_db/views/requirement/__init__.py,sha256=
|
|
748
|
-
endoreg_db/views/requirement/evaluate.py,sha256=
|
|
749
|
-
endoreg_db/views/requirement/lookup.py,sha256=
|
|
750
|
-
endoreg_db/views/requirement/lookup_store.py,sha256=
|
|
751
|
-
endoreg_db/views/requirement/requirement_utils.py,sha256=
|
|
746
|
+
endoreg_db/views/report/reimport.py,sha256=C1kShUsXXqSBzzeosuXZbgJ8xNyMLWiBHPU_RWz_a0E,7003
|
|
747
|
+
endoreg_db/views/report/report_stream.py,sha256=dESm4KUJ2Rkpqsi0Xo5fqATAxPbwTxpj4Zdj8OtD1As,7503
|
|
748
|
+
endoreg_db/views/requirement/__init__.py,sha256=nPekc__cVwpAn_Jd0-neHKPuocDOD4boyLpYwAQNCRM,161
|
|
749
|
+
endoreg_db/views/requirement/evaluate.py,sha256=HoOBqdnOJgG3iG2RyneSW1exoT9PBywzD8OGUA4-4_I,10014
|
|
750
|
+
endoreg_db/views/requirement/lookup.py,sha256=ixsOjprha2IdNMSdC1295NKQiVzkb5BR2_Fg0Qlbzpk,13122
|
|
751
|
+
endoreg_db/views/requirement/lookup_store.py,sha256=zIMh7y9jIOzWSF0mfFT23eqqc4QY1w79G5S9_5b_i_8,4939
|
|
752
|
+
endoreg_db/views/requirement/requirement_utils.py,sha256=ajs8soqUqezdZzuR67a0w9f99lZG_kr0pAmYnJMuiGY,2776
|
|
752
753
|
endoreg_db/views/requirement_lookup/lookup.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
753
754
|
endoreg_db/views/requirement_lookup/lookup_store.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
754
|
-
endoreg_db/views/stats/__init__.py,sha256=
|
|
755
|
-
endoreg_db/views/stats/stats_views.py,sha256=
|
|
756
|
-
endoreg_db/views/video/__init__.py,sha256=
|
|
757
|
-
endoreg_db/views/video/correction.py,sha256=
|
|
758
|
-
endoreg_db/views/video/reimport.py,sha256=
|
|
759
|
-
endoreg_db/views/video/segments_crud.py,sha256=
|
|
760
|
-
endoreg_db/views/video/video_apply_mask.py,sha256=
|
|
761
|
-
endoreg_db/views/video/video_correction.py,sha256=
|
|
762
|
-
endoreg_db/views/video/video_download_processed.py,sha256=
|
|
755
|
+
endoreg_db/views/stats/__init__.py,sha256=PLlzXFrHUg4Yxt-NnkLtOxKB5pYTXxWdeRbNkOHBm7E,258
|
|
756
|
+
endoreg_db/views/stats/stats_views.py,sha256=2FTc3T5xu-OcvTjwBJ-q3izTPFp6XpLe1N9wQqOyhXQ,9079
|
|
757
|
+
endoreg_db/views/video/__init__.py,sha256=8TLB9HSlSyloES4Fdo92xoe-jBCIJFXubtAcUEUikJI,1294
|
|
758
|
+
endoreg_db/views/video/correction.py,sha256=Y_dIxcjVibwtEoUMEvUA69t5dgKiIOM9RlgLtxUn5Rc,19369
|
|
759
|
+
endoreg_db/views/video/reimport.py,sha256=g_YahMdMGcfgD8KgxqCq5YZLxUup3Z-cRCpjxXVGIK4,9332
|
|
760
|
+
endoreg_db/views/video/segments_crud.py,sha256=19uTZuppch2LIOoaS0u_jyzT59hQ5RwVzjMwuvOQtiY,23496
|
|
761
|
+
endoreg_db/views/video/video_apply_mask.py,sha256=Argys6sZOFV0NUYP8iqnarjeSUpEzl4oQ58ip8Q47-8,1635
|
|
762
|
+
endoreg_db/views/video/video_correction.py,sha256=thUUUxbBC4Oq0bCGA4hAaOaYl5xMFTfgOmhGVySH8ps,769
|
|
763
|
+
endoreg_db/views/video/video_download_processed.py,sha256=I69ttckH1e1aazKqCfuCad7TXUnWTJgG1bS7UhPIVsw,1960
|
|
763
764
|
endoreg_db/views/video/video_examination_viewset.py,sha256=ej6CUK1JGFN7JmZOj25g1heaIIAwh6cf1HaYFmcR9EE,8331
|
|
764
|
-
endoreg_db/views/video/video_meta_stats.py,sha256=
|
|
765
|
-
endoreg_db/views/video/video_processing_history.py,sha256=
|
|
766
|
-
endoreg_db/views/video/video_remove_frames.py,sha256=
|
|
767
|
-
endoreg_db/views/video/video_stream.py,sha256=
|
|
768
|
-
endoreg_db
|
|
769
|
-
endoreg_db
|
|
770
|
-
endoreg_db-0.8.9.
|
|
771
|
-
endoreg_db-0.8.9.
|
|
765
|
+
endoreg_db/views/video/video_meta_stats.py,sha256=Bt3gZmgIZYOwK9VS9J1XtcnbnxVGOzpsapjBqqXK6X8,1030
|
|
766
|
+
endoreg_db/views/video/video_processing_history.py,sha256=MXFokN3X9SYfiYCpvWO0kpyDhbfsn79VNyFRo3Zxzgk,773
|
|
767
|
+
endoreg_db/views/video/video_remove_frames.py,sha256=7ddjkh7AuYUB8S_RVwx7vcc1HFb4Oq2r7wxPduqYpjY,1701
|
|
768
|
+
endoreg_db/views/video/video_stream.py,sha256=ejhIs3XvEe53hgoEd52HICMkuyzjl1PO35Umv9OGeLc,12096
|
|
769
|
+
endoreg_db/views/video/ai/__init__.py,sha256=83A-UDq_Nii-AB8tGzA653iM6fBBO14F8YLtvhiEp4U,159
|
|
770
|
+
endoreg_db/views/video/ai/label.py,sha256=Yd7DyjNMNOf7MMXbIlG9dUhWyvDmCOcJfOJO68jRtD0,4864
|
|
771
|
+
endoreg_db-0.8.9.10.dist-info/METADATA,sha256=5UKL6EqJ7VoABdkaw7SeTJv6H8Y7pkqT2tv8l0sSAi0,15109
|
|
772
|
+
endoreg_db-0.8.9.10.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
773
|
+
endoreg_db-0.8.9.10.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
774
|
+
endoreg_db-0.8.9.10.dist-info/RECORD,,
|