Skip to content
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

Conform tweetynet to recent PyHa refactor #113

Merged
merged 42 commits into from
Jun 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
e3fbbba
adding tweetynet model to pyha
mugen13lue Apr 12, 2022
4893339
updated files and checkiing results on windows
mugen13lue May 11, 2022
7907803
adding changes for another file
mugen13lue May 11, 2022
ea35605
local commit of file
mugen13lue May 11, 2022
fd8e6ff
adding environment with pytorch for tweetynet and fixed pyha tutorial…
mugen13lue May 11, 2022
0aa91d3
got the visualizations to work and fixed the local score output to be…
mugen13lue May 19, 2022
59b2579
fixed merge conflict
mugen13lue May 19, 2022
dbe2252
The visualization and creating the automated dataframe works and will…
mugen13lue May 24, 2022
1be6fea
adding conda environment for macOs
mugen13lue May 26, 2022
fb68481
adding environment for windows 10
mugen13lue May 26, 2022
9cda0e7
updating gitignore to ignore pycache in tweetynet_package
mugen13lue May 26, 2022
90c0414
update from microfaune to tweetynet in error message
mugen13lue May 26, 2022
5564bd4
updating notebook with tweetynet example
mugen13lue May 26, 2022
e55baa3
Merge branch 'tweetynet_integrations' into TweetyNet_integrations_2_main
mugen13lue May 26, 2022
1ac5554
Refactor TweetyNET automated label gen/visualizations
sprestrelski Jun 1, 2022
46b5e13
Updated Tutorial Notebook
JacobGlennAyers Jun 1, 2022
7c1a806
Updated Most Recent Ubuntu Conda Environment with PyTorch
JacobGlennAyers Jun 1, 2022
72a2dec
Meant to be in the conda_environments folder
JacobGlennAyers Jun 3, 2022
361d27d
added batch testing
Vanessa-Salgado Jun 27, 2022
ca4d4f5
Fixed FutureError warnings
Sean1572 Jun 27, 2022
6ca7ff4
added model comparison and spectrogram vis testing
sprestrelski Jun 27, 2022
5f6ce9f
Added chunk isolate to testing suite
Sean1572 Jun 27, 2022
2d672f0
Fixed spectrogram_graph visualization to readme
Sean1572 Jun 27, 2022
b113ac1
added tweetynet documentation
Vanessa-Salgado Jun 27, 2022
d1b2fbd
Merge branch 'TweetyNet-Testing' of https://github.com/UCSD-E4E/PyHa …
Vanessa-Salgado Jun 27, 2022
20c1536
Moved testing scripts to testing folder
Sean1572 Jun 27, 2022
4dbef91
Merge branch 'TweetyNet-Testing' of https://github.com/UCSD-E4E/PyHa …
Sean1572 Jun 27, 2022
e3a25d8
Merge pull request #119 from UCSD-E4E/TweetyNet-Testing
Sean1572 Jun 27, 2022
a9a9f7f
Removed testing folder because that was a bad idea
Sean1572 Jun 27, 2022
b937c2e
documentation update, renamed testing scripts
sprestrelski Jun 27, 2022
b0aca41
Use tweetynet normalization
Sean1572 Jun 28, 2022
62f2729
Merge branch 'TweetyNet_integrations_2_main' of https://github.com/UC…
Sean1572 Jun 28, 2022
b3846ff
Uncommented old normalize code
Sean1572 Jun 28, 2022
eeea93c
Fixed gitignore
Sean1572 Jun 28, 2022
5f00a09
Optimize panda use on steinburg to fix bug
Sean1572 Jun 28, 2022
6f2da05
Fixed bug with new steinburg fix
Sean1572 Jun 28, 2022
08d5170
Cleaned up steinburg code
Sean1572 Jun 28, 2022
0690ab9
Improved error messaging on Pyha
Sean1572 Jun 28, 2022
a67d9a5
Update .gitignore
Sean1572 Jun 28, 2022
b376ce5
Update .gitignore
Sean1572 Jun 28, 2022
2509e74
Update .gitignore
sprestrelski Jun 28, 2022
4763ee5
Merge branch 'TweetyNet_integrations_2_main' of https://github.com/UC…
sprestrelski Jun 28, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
.ipynb_checkpoints
PyHa/__pycache__
PyHa/microfaune_package/microfaune/__pycache__
PyHa/microfaune_package/microfaune/__pycache__
PyHa/tweetynet_package/tweetynet/__pycache__
TEST/*
/mixed_bird/*
TEST/ScreamingPiha1.wav
TEST/ScreamingPiha1.wav
PyHa/tweetynet_package/tweetynet/__pycache__/*
PyHa/tweetynet_package/tweetynet/__pycache__/
mixed_bird_manual.csv
outputs/result.csv
PyHa/birdnet_lite/__pycache__/analyze.cpython-37.pyc
*.wav
*.pyc
PyHa_Model_Comparison.ipynb
PyHa_Testing-Copy1.ipynb
PyHa_Testing.ipynb


Loading