-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
183d759
commit 152d894
Showing
18 changed files
with
342 additions
and
119 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,5 @@ | ||
from django.contrib import admin | ||
|
||
from .config import ConfigAdmin # noqa | ||
from .deduplicationset import DeduplicationSetAdmin # noqa | ||
from .duplicate import DuplicateAdmin # noqa | ||
from .hdetoken import HDETokenAdmin # noqa | ||
from .image import ImageAdmin # noqa | ||
|
||
admin.site.site_header = "HOPE Dedup Engine" | ||
admin.site.site_title = "HOPE Deduplication Admin" | ||
admin.site.index_title = "Welcome to the HOPE Deduplication Engine Admin" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 63 additions & 0 deletions
63
src/hope_dedup_engine/apps/api/config_settings_schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"detection": { | ||
"type": "object", | ||
"properties": { | ||
"confidence": { | ||
"type": "number", | ||
"exclusiveMinimum": 0, | ||
"maximum": 1, | ||
"default": "constance.config.FACE_DETECTION_CONFIDENCE" | ||
} | ||
}, | ||
"default": {} | ||
}, | ||
"recognition": { | ||
"type": "object", | ||
"properties": { | ||
"properties": { | ||
"type": "array", | ||
"items": { | ||
"type": "string" | ||
} | ||
}, | ||
"num_jitters": { | ||
"type": "integer", | ||
"minimum": 1, | ||
"default": "constance.config.FACE_ENCODINGS_NUM_JITTERS" | ||
}, | ||
"model": { | ||
"type": "string", | ||
"enum": [ | ||
"small", | ||
"large" | ||
], | ||
"default": "constance.config.FACE_ENCODINGS_MODEL" | ||
}, | ||
"preprocessors": { | ||
"type": "array", | ||
"items": { | ||
"type": "string", | ||
"enum": [] | ||
}, | ||
"uniquItems": true, | ||
"default": [] | ||
} | ||
}, | ||
"default": {} | ||
}, | ||
"duplicates": { | ||
"type": "object", | ||
"properties": { | ||
"tolerance": { | ||
"type": "number", | ||
"exclusiveMinimum": 0, | ||
"maximum": 1, | ||
"default": "constance.config.FACE_DISTANCE_THRESHOLD" | ||
} | ||
}, | ||
"default": {} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
from django import forms | ||
|
||
from django_svelte_jsoneditor.widgets import SvelteJSONEditorWidget | ||
|
||
|
||
class EditSchemaForm(forms.Form): | ||
schema = forms.JSONField(widget=SvelteJSONEditorWidget()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.