Update branch to latest version python 3.11 support only#32
Merged
EdmondIguazio merged 4 commits into1.11.xfrom Dec 30, 2025
Merged
Update branch to latest version python 3.11 support only#32EdmondIguazio merged 4 commits into1.11.xfrom
EdmondIguazio merged 4 commits into1.11.xfrom
Conversation
* from datasets import Dataset, load_dataset
* import mlrun
* import pandas as pd
- remove if sys.version_info.major == 3 and sys.version_info.minor == 9:
requirements += ['protobuf==3.20.3'] to stop the support of python 3.9
* from datasets import Dataset, load_dataset
* import mlrun
* import pandas as pd
* from mlrun.features import Feature
* import mlrun.common.schemas.alert as alert_constants
- In llm-monitoring-main.ipynb
* remove if sys.version_info.major == 3 and sys.version_info.minor == 9:
requirements += ['protobuf==3.20.3'] to stop the support of python 3.9
* change the dependency's in the image to be lighter
*
- In requirements.txt change deepeval==3.7.0
- In project_setup.py change requirements of generate_ds and remove
- In generate_ds.py remove "if hf_repo_id:" and dataset import, it causes dependency problem
- in llm-monitoring-main.ipynb remove hf_repo_id parameter to "generate_ds" func, "train" func and "llm-server" func
- In llm_as_a_judge.py remove the huggingface part, there is no need for it and it makes the requirements to big and causes dependency problems
- In train.py instead of getting and filtering the dataset in the func and causes dependency issues it now receiving it as a parameter
- Remove py3.9 support in project_setup.py "if sys.version_info.major == 3 and sys.version_info.minor == 9:"
fixing the demo and adjusting it to python 3.11 support only
|
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Update branch to latest version python 3.11 support only