-
Notifications
You must be signed in to change notification settings - Fork 722
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
Uv conversion additional samples GettingStarted, Features, End-to-End #2623
base: development
Are you sure you want to change the base?
Conversation
* uv for IntelTensorFlow_for_LLMs. * uv for leveraging-intel-extension-for-tensorFlow-with-LSTM-for-text-generation * uv for IntelTensorFlow_Horovod_Distributed_Deep_Learning * uv for IntelTensorFlow_ModelZoo_Inference_with_FP32_Int8 * uv for IntelTensorFlow_PerformanceAnalysis * add uv to IntelPython_XGBoost_daal4pyPrediction * finished sample IntelTensorFlow_Enabling_Auto_Mixed_Precision_for_TransferLearning * finished converting IntelPython_daal4py_DistributedLinearRegression * finished converting IntelPython_daal4py_GettingStarted * uv added to IntelPython_daal4py_DistributedKMeans * uv for intelpython-xgboost-gettingstarted * uv for intelTensorFlow_gettingstarted * uv for moding_gettingstarted * adding uv for moding_vs_pandas * finished converting JobRecommendationSystem sample --------- Signed-off-by: Solano Saurez, Hector <[email protected]> Co-authored-by: Allan Mora B <[email protected]> Co-authored-by: Mora Jimenez, Kevin <[email protected]> Co-authored-by: Edgar Parra <[email protected]>
AI-and-Analytics/Getting-Started-Samples/Modin_Vs_Pandas/sample.json
Outdated
Show resolved
Hide resolved
AI-and-Analytics/Getting-Started-Samples/Modin_Vs_Pandas/sample.json
Outdated
Show resolved
Hide resolved
"env": [ | ||
"pip install uv==0.6.3", | ||
"uv sync", | ||
"uv run python -m ipykernel install --user --name=modin_gs" |
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.
Not required
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.
in progress
AI-and-Analytics/Getting-Started-Samples/Modin_GettingStarted/sample.json
Outdated
Show resolved
Hide resolved
] | ||
license = {text = "MIT"} | ||
readme = "README.md" | ||
requires-python = ">=3.11" |
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.
This doesn't work for python==3.12
. This should be fixed to 3.11, can you change it to requires-python = ">=3.11,<3.12"
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.
in progress
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.
done
[dependency-groups] | ||
dev = [ | ||
"ipykernel>=6.29.5", | ||
] |
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.
I think we don't need this since we only have python script in this sample, no notebook!
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.
in progress
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.
done
AI-and-Analytics/Getting-Started-Samples/IntelPython_daal4py_GettingStarted/sample.json
Outdated
Show resolved
Hide resolved
AI-and-Analytics/Getting-Started-Samples/IntelPython_daal4py_GettingStarted/sample.json
Outdated
Show resolved
Hide resolved
AI-and-Analytics/Getting-Started-Samples/IntelPython_XGBoost_GettingStarted/sample.json
Outdated
Show resolved
Hide resolved
AI-and-Analytics/Getting-Started-Samples/IntelPython_XGBoost_GettingStarted/pyproject.toml
Outdated
Show resolved
Hide resolved
] | ||
license = {text = "MIT"} | ||
readme = "README.md" | ||
requires-python = ">=3.11" |
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.
doesn't work for python 3.12. Need to limit the range.
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.
In progress
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.
done
* fix Modin_vs_Pandas * fixed Modin_GettingStarted * fixed IntelTensorFlow_GettingStarted * fix IntelPython_daal4py_GettingStarted * fix IntelPython_XGBoost_GettingStarted * fix JobRecommendationSystem * fix Intel_Extension_for_SKLearn_Performance_SVC_Adult * fix IntelPython_daal4py_DistributedKMeans and IntelPython_daal4py_DistributedLinearRegression * fix IntelPython_XGBoost_daal4pyPrediction * fix IntelTensorFlow_Enabling_Auto_Mixed_Precision_for_TransferLearning and remove unnecessary ipykernel module * fixed IntelTensorFlow_Horovod_Distributed_Deep_Learning * update some versions * clean metadata and output from notebooks * fix IntelTensorFlow_TextGeneration_with_LSTM * fix INC_QuantizationAwareTraining_TextClassification * remove deprecated samples
Hello @Ankur-singh, |
Existing Sample Changes
Description
ONSAM 1917 Continued (17 total in this PR)
In these changes we are using UV to manage the python dependencies, kernels, and venv.
Each test will be isolated from all other tests and packages added/changed/removed will not affect later tests.
pyproject.toml files have been added to each sample test which list all the dependencies and required versions (takes the place of the requirements.txt).
Adds uv.lock file to maintain consistency of packages being run on any environment.
Removes all calls to 'conda' in the sample.json files as well as dependence on the AI Tools Offline Installer
Fixes Issue#
Signed-off-by: Solano Saurez, Hector [email protected]
Co-authored-by: Allan Mora B [email protected]
Co-authored-by: Mora Jimenez, Kevin [email protected]
Co-authored-by: Edgar Parra [email protected]
The following test cases are completed and tested:
AI-and-Analytics/Getting-Started-Samples
IntelPython_daal4py_GettingStarted/IntelPython_XGBoost_GettingStarted/IntelTensorFlow_GettingStarted/
Modin_GettingStarted/Modin_Vs_Pandas/AI-and-Analytics/Features-and-Functionality
INC_QuantizationAwareTraining_TextClassification/
Intel_Extension_For_SKLearn_Performance_SVC_Adult/IntelPython_daal4py_DistributedKMeans/IntelPython_daal4py_DistributedLinearRegression/IntelPython_XGBoost_daal4pyPrediction/IntelTensorFlow_Enabling_Auto_Mixed_Precision_for_TransferLearning/
IntelTensorFlow_for_LLMs/
IntelTensorFlow_Horovod_Distributed_Deep_Learning/
IntelTensorFlow_ModelZoo_Inference_with_FP32_Int8/
IntelTensorFlow_PerformanceAnalysis/
IntelTensorFlow_TextGeneration_with_LSTM/
AI-and-Analytics/End-To-End
JobRecommendationSystem/
External Dependencies
None
Type of change
Please delete options that are not relevant. Add a 'X' to the one that is applicable.
How Has This Been Tested?
Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration