-
Notifications
You must be signed in to change notification settings - Fork 1
BatBot initial testing and integration #305
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
f1c3782
initial testing and integration
BryonLewis db3834a
batbot metadata parser
BryonLewis 4253365
Merge branch 'main' into batbot-integration
BryonLewis 5c3d9a8
batbot spectrogram generation
BryonLewis 1c24339
remove old spectrogram generation code
BryonLewis 8878620
swap back to using the github installation for batbot
BryonLewis e96da72
Merge branch 'batbot-integration' of https://github.com/Kitware/batai…
BryonLewis 9623991
use temp branch for start/stop fixes
BryonLewis a1d5eed
increase accuracy for spectrograms and annotations
BryonLewis a438016
thumbnail centering fixes
BryonLewis b1ae312
add noise filter
BryonLewis 4aa3016
contour testing
BryonLewis 02d6d27
update batbot
BryonLewis 439dae3
Merge branch 'main' into batbot-integration
BryonLewis d95e58b
fix NABat spectrogram generation
BryonLewis 0bed12a
client linting
BryonLewis dacd997
removing integration notes
BryonLewis cc1c694
Update client/src/components/TransparencyFilterControl.vue
BryonLewis 9747b84
reverting float to ints for pixel fields
BryonLewis 78c1093
remove uneeded dependencies
BryonLewis bf1fa9c
Merge branch 'main' into batbot-integration
BryonLewis 856081b
import GRTS updated for sciencebase.gov downtime
BryonLewis 29b0d5d
add batbot issue for ml model integration
BryonLewis ba11371
main merge migration update
BryonLewis b18710b
swap to port 8080 for client based on main's client redirect port
BryonLewis 3db6b01
remove matplotlib from importRecordings
BryonLewis 409f852
Update redirect URL for local developers to 8080
naglepuff 75dcdcb
adjust default zoom size
BryonLewis File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
143 changes: 143 additions & 0 deletions
143
bats_ai/core/migrations/0027_alter_annotations_end_time_and_more.py
This file contains hidden or 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,143 @@ | ||
| # Generated by Django 4.2.23 on 2026-02-03 13:05 | ||
|
|
||
| import django.contrib.postgres.fields | ||
| from django.db import migrations, models | ||
|
|
||
|
|
||
| class Migration(migrations.Migration): | ||
| dependencies = [ | ||
| ('core', '0026_merge'), | ||
| ] | ||
|
|
||
| operations = [ | ||
| migrations.AlterField( | ||
| model_name='annotations', | ||
| name='end_time', | ||
| field=models.FloatField(blank=True, null=True), | ||
| ), | ||
| migrations.AlterField( | ||
| model_name='annotations', | ||
| name='high_freq', | ||
| field=models.FloatField(blank=True, null=True), | ||
| ), | ||
| migrations.AlterField( | ||
| model_name='annotations', | ||
| name='low_freq', | ||
| field=models.FloatField(blank=True, null=True), | ||
| ), | ||
| migrations.AlterField( | ||
| model_name='annotations', | ||
| name='start_time', | ||
| field=models.FloatField(blank=True, null=True), | ||
| ), | ||
| migrations.AlterField( | ||
| model_name='compressedspectrogram', | ||
| name='length', | ||
| field=models.FloatField(), | ||
| ), | ||
| migrations.AlterField( | ||
| model_name='compressedspectrogram', | ||
| name='starts', | ||
| field=django.contrib.postgres.fields.ArrayField( | ||
| base_field=django.contrib.postgres.fields.ArrayField( | ||
| base_field=models.FloatField(), size=None | ||
| ), | ||
| size=None, | ||
| ), | ||
| ), | ||
| migrations.AlterField( | ||
| model_name='compressedspectrogram', | ||
| name='stops', | ||
| field=django.contrib.postgres.fields.ArrayField( | ||
| base_field=django.contrib.postgres.fields.ArrayField( | ||
| base_field=models.FloatField(), size=None | ||
| ), | ||
| size=None, | ||
| ), | ||
| ), | ||
| migrations.AlterField( | ||
| model_name='compressedspectrogram', | ||
| name='widths', | ||
| field=django.contrib.postgres.fields.ArrayField( | ||
| base_field=django.contrib.postgres.fields.ArrayField( | ||
| base_field=models.FloatField(), size=None | ||
| ), | ||
| size=None, | ||
| ), | ||
| ), | ||
| migrations.AlterField( | ||
| model_name='nabatcompressedspectrogram', | ||
| name='length', | ||
| field=models.FloatField(), | ||
| ), | ||
| migrations.AlterField( | ||
| model_name='nabatcompressedspectrogram', | ||
| name='starts', | ||
| field=django.contrib.postgres.fields.ArrayField( | ||
| base_field=django.contrib.postgres.fields.ArrayField( | ||
| base_field=models.FloatField(), size=None | ||
| ), | ||
| size=None, | ||
| ), | ||
| ), | ||
| migrations.AlterField( | ||
| model_name='nabatcompressedspectrogram', | ||
| name='stops', | ||
| field=django.contrib.postgres.fields.ArrayField( | ||
| base_field=django.contrib.postgres.fields.ArrayField( | ||
| base_field=models.FloatField(), size=None | ||
| ), | ||
| size=None, | ||
| ), | ||
| ), | ||
| migrations.AlterField( | ||
| model_name='nabatcompressedspectrogram', | ||
| name='widths', | ||
| field=django.contrib.postgres.fields.ArrayField( | ||
| base_field=django.contrib.postgres.fields.ArrayField( | ||
| base_field=models.FloatField(), size=None | ||
| ), | ||
| size=None, | ||
| ), | ||
| ), | ||
| migrations.AlterField( | ||
| model_name='nabatspectrogram', | ||
| name='duration', | ||
| field=models.FloatField(), | ||
| ), | ||
| migrations.AlterField( | ||
| model_name='nabatspectrogram', | ||
| name='frequency_max', | ||
| field=models.FloatField(), | ||
| ), | ||
| migrations.AlterField( | ||
| model_name='nabatspectrogram', | ||
| name='frequency_min', | ||
| field=models.FloatField(), | ||
| ), | ||
| migrations.AlterField( | ||
| model_name='sequenceannotations', | ||
| name='end_time', | ||
| field=models.FloatField(blank=True, null=True), | ||
| ), | ||
| migrations.AlterField( | ||
| model_name='sequenceannotations', | ||
| name='start_time', | ||
| field=models.FloatField(blank=True, null=True), | ||
| ), | ||
| migrations.AlterField( | ||
| model_name='spectrogram', | ||
| name='duration', | ||
| field=models.FloatField(), | ||
| ), | ||
| migrations.AlterField( | ||
| model_name='spectrogram', | ||
| name='frequency_max', | ||
| field=models.FloatField(), | ||
| ), | ||
| migrations.AlterField( | ||
| model_name='spectrogram', | ||
| name='frequency_min', | ||
| field=models.FloatField(), | ||
| ), | ||
| ] |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.