-
Notifications
You must be signed in to change notification settings - Fork 17
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
pickle -> onnx, IsolationForest -> AADForest #356
Conversation
Thanks -- I enable tests so that you can test here :-) |
You need to install the
Just edit the name: Run test suites
run: |
pip uninstall -y actsnfink
pip install git+https://github.com/emilleishida/fink_sn_activelearning.git@bf8d4e263e02d42781642f872f7bc030c24792bc#egg=actsnfink
+ pip install <whatever you need>
./run_tests.sh
curl -s https://codecov.io/bash | bash |
Thanks! |
Didn't notice that the new archive didn't load... |
I don't know what I broke :(
Do I have to upload this library to the repository? |
Hum, usually it is not required (other modules use tensorflow without the need). I am inspecting. |
Actually, this is just a warning, meaning there is no GPU support here (make sense). Look at the line after:
The job failed because another thing:
Try to downgrade protobuf:
to see if that solves the problem. |
Ah wait -- the problem is not from your code... So this means the |
OK, we have a problem. |
I will check if I can upgrade tensorflow, but in the meantime, could you check if installing onnx==1.12.0 would work for you? |
I don't think there should be a problem (seems like the model should work with 1.12.0). I specified the version in the run_test.yml file |
Thanks @Knispel2 -- the CI is all green :-) One question: are you still using |
Thanks for your help!
We want to keep the option to use the old model. It may be useful in the future. For this I added the model_type parameter. AADForest allows us to use active learning. We want to use reactions from experts under notification messages in Telegram and Slack channels as a signal. If an expert puts a thumbs up, it is indeed an anomaly, and if it puts a thumbs down, it is not an anomaly. We plan to periodically update the model separately using a module located here: https://github.com/Knispel2/fink_anomaly_detection_model, and then just update the .zip archive with the model in the fink-science repository. This raises two questions for me:
|
Yes definitely possible! I will handle this.
Sure -- just let me know what is your app. |
The app is called reactions_reader. I added it to the workspace and gave you access to this app |
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #356 +/- ##
==========================================
+ Coverage 53.40% 53.58% +0.17%
==========================================
Files 33 33
Lines 1511 1536 +25
==========================================
+ Hits 807 823 +16
- Misses 704 713 +9
☔ View full report in Codecov by Sentry. |
Thanks -- I'm merging and this will appear in the next release |
Changes:
Currently having trouble running tests on my computer. I created PR to see how the code behaves on workflow tests (my python-worker crashes when trying to test it).
To be continued...