Skip to content

Commit

Permalink
Merge pull request #72 from Nitnelav/random-audio-annotation
Browse files Browse the repository at this point in the history
select un-annotated audio only
  • Loading branch information
Nitnelav authored Dec 12, 2024
2 parents 401624c + 58ba7e6 commit 202fda0
Showing 1 changed file with 15 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,24 @@
{
"index": "sensor_yamnet_*",
"size" : 1,
"size": 1,
"_source": true,
"query": {
"function_score": {
"query": {
"range": {
"date": {
"gte": "2024-06-01",
"lte": "2024-11-31"
}
"bool": {
"must": [
{
"range": {
"date": {
"gte": "2024-06-01",
"lte": "2024-11-31"
}
}
}
],
"must_not": [
{"exists": {"field": "annotation"}}
]
}
},
"random_score": {}
Expand Down

0 comments on commit 202fda0

Please sign in to comment.