René's URL Explorer Experiment


Title: Bump tensorflow from 2.4.0 to 2.11.1 in /machine-learning/nlp/text-generator by dependabot[bot] · Pull Request #20 · grimmvenom/pythoncode-tutorials · GitHub

Open Graph Title: Bump tensorflow from 2.4.0 to 2.11.1 in /machine-learning/nlp/text-generator by dependabot[bot] · Pull Request #20 · grimmvenom/pythoncode-tutorials

X Title: Bump tensorflow from 2.4.0 to 2.11.1 in /machine-learning/nlp/text-generator by dependabot[bot] · Pull Request #20 · grimmvenom/pythoncode-tutorials

Description: Bumps tensorflow from 2.4.0 to 2.11.1. Release notes Sourced from tensorflow's releases. TensorFlow 2.11.1 Release 2.11.1 Note: TensorFlow 2.10 was the last TensorFlow release that supported GPU on native-Windows. Starting with TensorFlow 2.11, you will need to install TensorFlow in WSL2, or install tensorflow-cpu and, optionally, try the TensorFlow-DirectML-Plugin. Security vulnerability fixes will no longer be patched to this Tensorflow version. The latest Tensorflow version includes the security vulnerability fixes. You can update to the latest version (recommended) or patch security vulnerabilities yourself steps. You can refer to the release notes of the latest Tensorflow version for a list of newly fixed vulnerabilities. If you have any questions, please create a GitHub issue to let us know. This release also introduces several vulnerability fixes: Fixes an FPE in TFLite in conv kernel CVE-2023-27579 Fixes a double free in Fractional(Max/Avg)Pool CVE-2023-25801 Fixes a null dereference on ParallelConcat with XLA CVE-2023-25676 Fixes a segfault in Bincount with XLA CVE-2023-25675 Fixes an NPE in RandomShuffle with XLA enable CVE-2023-25674 Fixes an FPE in TensorListSplit with XLA CVE-2023-25673 Fixes segmentation fault in tfg-translate CVE-2023-25671 Fixes an NPE in QuantizedMatMulWithBiasAndDequantize CVE-2023-25670 Fixes an FPE in AvgPoolGrad with XLA CVE-2023-25669 Fixes a heap out-of-buffer read vulnerability in the QuantizeAndDequantize operation CVE-2023-25668 Fixes a segfault when opening multiframe gif CVE-2023-25667 Fixes an NPE in SparseSparseMaximum CVE-2023-25665 Fixes an FPE in AudioSpectrogram CVE-2023-25666 Fixes a heap-buffer-overflow in AvgPoolGrad CVE-2023-25664 Fixes a NPE in TensorArrayConcatV2 CVE-2023-25663 Fixes a Integer overflow in EditDistance CVE-2023-25662 Fixes a Seg fault in tf.raw_ops.Print CVE-2023-25660 Fixes a OOB read in DynamicStitch CVE-2023-25659 Fixes a OOB Read in GRUBlockCellGrad CVE-2023-25658 TensorFlow 2.11.0 Release 2.11.0 Breaking Changes The tf.keras.optimizers.Optimizer base class now points to the new Keras optimizer, while the old optimizers have been moved to the tf.keras.optimizers.legacy namespace. If you find your workflow failing due to this change, you may be facing one of the following issues: Checkpoint loading failure. The new optimizer handles optimizer state differently from the old optimizer, which simplifies the logic of checkpoint saving/loading, but at the cost of breaking checkpoint backward compatibility in some cases. If you want to keep using an old checkpoint, please change your optimizer to tf.keras.optimizer.legacy.XXX (e.g. tf.keras.optimizer.legacy.Adam). TF1 compatibility. The new optimizer, tf.keras.optimizers.Optimizer, does not support TF1 any more, so please use the legacy optimizer tf.keras.optimizer.legacy.XXX. We highly recommend migrating your workflow to TF2 for stable support and new features. Old optimizer API not found. The new optimizer, tf.keras.optimizers.Optimizer, has a different set of public APIs from the old optimizer. These API changes are mostly related to getting rid of slot variables and TF1 support. Please check the API documentation to find alternatives to the missing API. If you must call the deprecated API, please change your optimizer to the legacy optimizer. Learning rate schedule access. When using a tf.keras.optimizers.schedules.LearningRateSchedule, the new optimizer's learning_rate property returns the current learning rate value instead of a LearningRateSchedule object as before. If you need to access the LearningRateSchedule object, please use optimizer._learning_rate. If you implemented a custom optimizer based on the old optimizer. Please set your optimizer to subclass tf.keras.optimizer.legacy.XXX. If you want to migrate to the new optimizer and find it does not support your optimizer, please file an issue in the Keras GitHub repo. Errors, such as Cannot recognize variable.... The new optimizer requires all optimizer variables to be created at the first apply_gradients() or minimize() call. If your workflow calls the optimizer to update different parts of the model in multiple stages, please call optimizer.build(model.trainable_variables) before the training loop. Timeout or performance loss. We don't anticipate this to happen, but if you see such issues, please use the legacy optimizer, and file an issue in the Keras GitHub repo. The old Keras optimizer will never be deleted, but will not see any new feature additions. New optimizers (for example, tf.keras.optimizers.Adafactor) will only be implemented based on the new tf.keras.optimizers.Optimizer base class. tensorflow/python/keras code is a legacy copy of Keras since the TensorFlow v2.7 release, and will be deleted in the v2.12 release. Please remove any import of tensorflow.python.keras and use the public API with from tensorflow import keras or import tensorflow as tf; tf.keras. Major Features and Improvements ... (truncated) Changelog Sourced from tensorflow's changelog. Release 2.11.1 Note: TensorFlow 2.10 was the last TensorFlow release that supported GPU on native-Windows. Starting with TensorFlow 2.11, you will need to install TensorFlow in WSL2, or install tensorflow-cpu and, optionally, try the TensorFlow-DirectML-Plugin. Security vulnerability fixes will no longer be patched to this Tensorflow version. The latest Tensorflow version includes the security vulnerability fixes. You can update to the latest version (recommended) or patch security vulnerabilities yourself steps. You can refer to the release notes of the latest Tensorflow version for a list of newly fixed vulnerabilities. If you have any questions, please create a GitHub issue to let us know. This release also introduces several vulnerability fixes: Fixes an FPE in TFLite in conv kernel CVE-2023-27579 Fixes a double free in Fractional(Max/Avg)Pool CVE-2023-25801 Fixes a null dereference on ParallelConcat with XLA CVE-2023-25676 Fixes a segfault in Bincount with XLA CVE-2023-25675 Fixes an NPE in RandomShuffle with XLA enable CVE-2023-25674 Fixes an FPE in TensorListSplit with XLA CVE-2023-25673 Fixes segmentation fault in tfg-translate CVE-2023-25671 Fixes an NPE in QuantizedMatMulWithBiasAndDequantize CVE-2023-25670 Fixes an FPE in AvgPoolGrad with XLA CVE-2023-25669 Fixes a heap out-of-buffer read vulnerability in the QuantizeAndDequantize operation CVE-2023-25668 Fixes a segfault when opening multiframe gif CVE-2023-25667 Fixes an NPE in SparseSparseMaximum CVE-2023-25665 Fixes an FPE in AudioSpectrogram CVE-2023-25666 Fixes a heap-buffer-overflow in AvgPoolGrad CVE-2023-25664 Fixes a NPE in TensorArrayConcatV2 CVE-2023-25663 Fixes a Integer overflow in EditDistance CVE-2023-25662 Fixes a Seg fault in tf.raw_ops.Print CVE-2023-25660 Fixes a OOB read in DynamicStitch CVE-2023-25659 Fixes a OOB Read in GRUBlockCellGrad CVE-2023-25658 Release 2.11.0 Breaking Changes tf.keras.optimizers.Optimizer now points to the new Keras optimizer, and old optimizers have moved to the tf.keras.optimizers.legacy namespace. If you find your workflow failing due to this change, you may be facing one of the following issues: Checkpoint loading failure. The new optimizer handles optimizer state differently from the old optimizer, which simplies the logic of checkpoint saving/loading, but at the cost of breaking checkpoint backward compatibility in some cases. If you want to keep using an old checkpoint, please change your optimizer to tf.keras.optimizers.legacy.XXX (e.g. tf.keras.optimizers.legacy.Adam). TF1 compatibility. The new optimizer does not support TF1 any more, so please use the legacy optimizer tf.keras.optimizer.legacy.XXX. We highly recommend to migrate your workflow to TF2 for stable support and new features. API not found. The new optimizer has a different set of public APIs from the old optimizer. These API changes are mostly related to getting rid of slot variables and TF1 support. Please check the API ... (truncated) Commits a3e2c69 Merge pull request #60016 from tensorflow/fix-relnotes 13b85dc Fix release notes 48b18db Merge pull request #60014 from tensorflow/disable-test-that-ooms eea48f5 Disable a test that results in OOM+segfault a632584 Merge pull request #60000 from tensorflow/venkat-patch-3 93dea7a Update RELEASE.md a2ba9f1 Updating Release.md with Legal Language for Release Notes fae41c7 Merge pull request #59998 from tensorflow/fix-bad-cherrypick-again 2757416 Fix bad cherrypick c78616f Merge pull request #59992 from tensorflow/fix-2.11-build Additional commits viewable in compare view Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase. Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: @dependabot rebase will rebase this PR @dependabot recreate will recreate this PR, overwriting any edits that have been made to it @dependabot merge will merge this PR after your CI passes on it @dependabot squash and merge will squash and merge this PR after your CI passes on it @dependabot cancel merge will cancel a previously requested merge and block automerging @dependabot reopen will reopen this PR if it is closed @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the Security Alerts page.

Open Graph Description: Bumps tensorflow from 2.4.0 to 2.11.1. Release notes Sourced from tensorflow's releases. TensorFlow 2.11.1 Release 2.11.1 Note: TensorFlow 2.10 was the last TensorFlow release that supported ...

X Description: Bumps tensorflow from 2.4.0 to 2.11.1. Release notes Sourced from tensorflow's releases. TensorFlow 2.11.1 Release 2.11.1 Note: TensorFlow 2.10 was the last TensorFlow release that suppor...

Opengraph URL: https://github.com/grimmvenom/pythoncode-tutorials/pull/20

X: @github

direct link

Domain: patch-diff.githubusercontent.com

route-pattern/:user_id/:repository/pull/:id/checks(.:format)
route-controllerpull_requests
route-actionchecks
fetch-noncev2:0d8c87b2-a688-761f-2c66-f3f161bba770
current-catalog-service-hash87dc3bc62d9b466312751bfd5f889726f4f1337bdff4e8be7da7c93d6c00a25a
request-idE646:2265CE:31D4E94:41319B7:6974A7F0
html-safe-nonce85a21fab23b0bdf3e41e2ccc4e06afbddc3f9ca90b2c66898f023ceab4402f01
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFNjQ2OjIyNjVDRTozMUQ0RTk0OjQxMzE5Qjc6Njk3NEE3RjAiLCJ2aXNpdG9yX2lkIjoiNDM5ODc4MzY5Njc2NDk3MDk5MiIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac0138024de3fc81a63158889862b51ab144102bb1b931622f64f51e8b24dfd60c
hovercard-subject-tagpull_request:1289849571
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,checks,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/checks
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/grimmvenom/pythoncode-tutorials/pull/20/checks
twitter:imagehttps://avatars.githubusercontent.com/in/29110?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/in/29110?s=400&v=4
og:image:altBumps tensorflow from 2.4.0 to 2.11.1. Release notes Sourced from tensorflow's releases. TensorFlow 2.11.1 Release 2.11.1 Note: TensorFlow 2.10 was the last TensorFlow release that supported ...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None4a4bf5f4e28041a9d2e5c107d7d20b78b4294ba261cab243b28167c16a623a1f
turbo-cache-controlno-preview
go-importgithub.com/grimmvenom/pythoncode-tutorials git https://github.com/grimmvenom/pythoncode-tutorials.git
octolytics-dimension-user_id15673701
octolytics-dimension-user_logingrimmvenom
octolytics-dimension-repository_id337096830
octolytics-dimension-repository_nwogrimmvenom/pythoncode-tutorials
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forktrue
octolytics-dimension-repository_parent_id199449624
octolytics-dimension-repository_parent_nwox4nth055/pythoncode-tutorials
octolytics-dimension-repository_network_root_id199449624
octolytics-dimension-repository_network_root_nwox4nth055/pythoncode-tutorials
turbo-body-classeslogged-out env-production page-responsive full-width full-width-p-0
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release488b30e96dfd057fbbe44c6665ccbc030b729dde
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/grimmvenom/pythoncode-tutorials/pull/20/checks#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgrimmvenom%2Fpythoncode-tutorials%2Fpull%2F20%2Fchecks
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgrimmvenom%2Fpythoncode-tutorials%2Fpull%2F20%2Fchecks
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Fchecks&source=header-repo&source_repo=grimmvenom%2Fpythoncode-tutorials
Reloadhttps://patch-diff.githubusercontent.com/grimmvenom/pythoncode-tutorials/pull/20/checks
Reloadhttps://patch-diff.githubusercontent.com/grimmvenom/pythoncode-tutorials/pull/20/checks
Reloadhttps://patch-diff.githubusercontent.com/grimmvenom/pythoncode-tutorials/pull/20/checks
grimmvenom https://patch-diff.githubusercontent.com/grimmvenom
pythoncode-tutorialshttps://patch-diff.githubusercontent.com/grimmvenom/pythoncode-tutorials
x4nth055/pythoncode-tutorialshttps://patch-diff.githubusercontent.com/x4nth055/pythoncode-tutorials
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Fgrimmvenom%2Fpythoncode-tutorials
Fork 0 https://patch-diff.githubusercontent.com/login?return_to=%2Fgrimmvenom%2Fpythoncode-tutorials
Star 0 https://patch-diff.githubusercontent.com/login?return_to=%2Fgrimmvenom%2Fpythoncode-tutorials
Code https://patch-diff.githubusercontent.com/grimmvenom/pythoncode-tutorials
Pull requests 4 https://patch-diff.githubusercontent.com/grimmvenom/pythoncode-tutorials/pulls
Actions https://patch-diff.githubusercontent.com/grimmvenom/pythoncode-tutorials/actions
Projects 0 https://patch-diff.githubusercontent.com/grimmvenom/pythoncode-tutorials/projects
Security 0 https://patch-diff.githubusercontent.com/grimmvenom/pythoncode-tutorials/security
Insights https://patch-diff.githubusercontent.com/grimmvenom/pythoncode-tutorials/pulse
Code https://patch-diff.githubusercontent.com/grimmvenom/pythoncode-tutorials
Pull requests https://patch-diff.githubusercontent.com/grimmvenom/pythoncode-tutorials/pulls
Actions https://patch-diff.githubusercontent.com/grimmvenom/pythoncode-tutorials/actions
Projects https://patch-diff.githubusercontent.com/grimmvenom/pythoncode-tutorials/projects
Security https://patch-diff.githubusercontent.com/grimmvenom/pythoncode-tutorials/security
Insights https://patch-diff.githubusercontent.com/grimmvenom/pythoncode-tutorials/pulse
Sign up for GitHub https://patch-diff.githubusercontent.com/signup?return_to=%2Fgrimmvenom%2Fpythoncode-tutorials%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://patch-diff.githubusercontent.com/login?return_to=%2Fgrimmvenom%2Fpythoncode-tutorials%2Fissues%2Fnew%2Fchoose
dependabothttps://patch-diff.githubusercontent.com/apps/dependabot
masterhttps://patch-diff.githubusercontent.com/grimmvenom/pythoncode-tutorials/tree/master
dependabot/pip/machine-learning/nlp/text-generator/tensorflow-2.11.1https://patch-diff.githubusercontent.com/grimmvenom/pythoncode-tutorials/tree/dependabot/pip/machine-learning/nlp/text-generator/tensorflow-2.11.1
Conversation 0 https://patch-diff.githubusercontent.com/grimmvenom/pythoncode-tutorials/pull/20
Commits 1 https://patch-diff.githubusercontent.com/grimmvenom/pythoncode-tutorials/pull/20/commits
Checks 0 https://patch-diff.githubusercontent.com/grimmvenom/pythoncode-tutorials/pull/20/checks
Files changed https://patch-diff.githubusercontent.com/grimmvenom/pythoncode-tutorials/pull/20/files
Please reload this pagehttps://patch-diff.githubusercontent.com/grimmvenom/pythoncode-tutorials/pull/20/checks
Please reload this pagehttps://patch-diff.githubusercontent.com/grimmvenom/pythoncode-tutorials/pull/20/checks
Bump tensorflow from 2.4.0 to 2.11.1 in /machine-learning/nlp/text-generator https://patch-diff.githubusercontent.com/grimmvenom/pythoncode-tutorials/pull/20/checks#top
Please reload this pagehttps://patch-diff.githubusercontent.com/grimmvenom/pythoncode-tutorials/pull/20/checks
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.