-
Notifications
You must be signed in to change notification settings - Fork 225
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
Update tensorflow requirement from !=2.6.0,!=2.6.1,<2.15.0,>=2.2.0 to >=2.2.0,!=2.6.0,!=2.6.1,<2.19.0 #908
Merged
RobertSamoilescu
merged 44 commits into
master
from
dependabot/pip/tensorflow-gte-2.2.0-and-neq-2.6.0-and-neq-2.6.1-and-lt-2.19.0
Dec 11, 2024
Merged
Changes from all commits
Commits
Show all changes
44 commits
Select commit
Hold shift + click to select a range
badf192
Update tensorflow requirement
dependabot[bot] d1d62b9
Updated upper and lower bound on tensorflow
RobertSamoilescu 189fd8e
Fixed input shape for test_misc_tf
RobertSamoilescu 3fb914c
Fixed activation serialization issue for test_saving_legacy.py
RobertSamoilescu 548dc1b
Fixed preprocessor
RobertSamoilescu 32cbf0c
Fixed admd
RobertSamoilescu 5287f4f
Fixed model cloning
RobertSamoilescu 6edaec4
Fixed TFDataset index error
RobertSamoilescu 728db4f
Fixed trainable vars for spot the diff detector
RobertSamoilescu e3d6dc9
Fixed infer sigma flag in mmd
RobertSamoilescu 207ceb4
Fixed classifier tf test
RobertSamoilescu a4d4a5b
Fixed kernes trainable variables
RobertSamoilescu 945e69f
Fixed llr tests
RobertSamoilescu f72c462
Fixed saving and optimizer saving
RobertSamoilescu f20de56
Included test entry in Makefile and updated ci
RobertSamoilescu 71e7331
Test all notebooks - to be reverted
RobertSamoilescu f1c394f
Removed python3.8 from ci
RobertSamoilescu 21379eb
Improved test command
RobertSamoilescu 481c6a9
Fixed saving test models
RobertSamoilescu 689723d
Fixed non-tensor inputs as positional arguments
RobertSamoilescu 2cdfe8e
Fixed env variable in makefile
RobertSamoilescu f46b67d
Fixed optimizer tests, including legacy tests
RobertSamoilescu 4fa6ee2
Fixed optional dependencies imports
RobertSamoilescu ecce171
Fixed od_vae_adult.ipynb
RobertSamoilescu ec1e9f6
Fixed od_vae_cifar10.ipynb
RobertSamoilescu e946877
Fixed cd_model_unc_cifar10_wine.ipynb
RobertSamoilescu 47836b7
Fixed od_aegmm_kddcup.ipynb
RobertSamoilescu 17889a8
Fixed od_vae_kddcup.ipynb
RobertSamoilescu e9cdb44
Fixed od_seq2seq_ecg.ipynb
RobertSamoilescu 6c1b95b
Fixed od_ae_cifar10.ipynb
RobertSamoilescu 8c5e7d5
Fixed cd_distillation_cifar10.ipynb
RobertSamoilescu 688dc25
Fixed cd_ks_cifar10.ipynb
RobertSamoilescu c94dc27
Fixed cd_mmd_cifar10.ipynb
RobertSamoilescu a7b4f35
Fixed od_llr_genome.ipynb
RobertSamoilescu 10fb508
Fixed od_llr_mnist.ipynb
RobertSamoilescu bc81fc0
Fixed od_seq2seq_synth.ipynb
RobertSamoilescu 9bf3cb4
Fixed cd_text_imdb.ipynb
RobertSamoilescu 5944751
Fixed alibi_detect_deploy.ipynb
RobertSamoilescu 9aed8e6
Fixed ad_ae_cifar10.ipynb
RobertSamoilescu f961c13
Reverted a few things in misc
RobertSamoilescu a55ce0e
Fixed flake8 errors
RobertSamoilescu 5c73414
Reverted test all notebooks github actions
RobertSamoilescu 4b35346
Addressed PR comments
RobertSamoilescu 88c8e71
Fixed flake8 error
RobertSamoilescu 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 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 |
---|---|---|
|
@@ -34,7 +34,7 @@ jobs: | |
strategy: | ||
matrix: | ||
os: [ ubuntu-latest ] | ||
python-version: [ '3.8', '3.9', '3.10', '3.11'] | ||
python-version: ['3.9', '3.10', '3.11'] | ||
pydantic-version: [ '1.10.15', '2.7.1' ] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. not related to this PR, do we still support pydantic v1? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I was thinking to remove it in a future PR. Was about to ask you about that. |
||
include: # Run windows tests on only one python version | ||
- os: windows-latest | ||
|
@@ -71,10 +71,7 @@ jobs: | |
limit-access-to-actor: true | ||
|
||
- name: Test with pytest | ||
run: | | ||
pytest --randomly-seed=0 alibi_detect | ||
# Note: The pytest-randomly seed is fixed at 0 for now. Once the legacy np.random.seed(0)'s | ||
# are removed from tests, this can be removed, allowing all tests to use random seeds. | ||
run: make test | ||
|
||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v3 | ||
|
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 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 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 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 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 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 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should we add 3.12 here as well?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will be added in a future PR.