-
Notifications
You must be signed in to change notification settings - Fork 727
Uv conversion additional samples GettingStarted, Features, End-to-End #2623
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
Open
eleemhui
wants to merge
6
commits into
oneapi-src:development
Choose a base branch
from
eleemhui:dev2
base: development
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
b65bf6a
Uv conversion remaining samples (#4)
eleemhui 48da1e6
merge upstream
eleemhui ddc41c9
Pr2 fixes (#5)
eleemhui 436f7de
Fix: add dependency
Edgar097 36a26a4
fix IntelTensorFlow_ModelZoo_Inference_with_FP32_Int8
eleemhui 033aebb
Sticking to specific python version. (#7)
eleemhui 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 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
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
35 changes: 35 additions & 0 deletions
35
AI-and-Analytics/End-to-end-Workloads/JobRecommendationSystem/pyproject.toml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
[project] | ||
name = "jobrecommendationsystem" | ||
version = "0.1.0" | ||
description = "This sample illustrates the use of Intel® Extension for TensorFlow* to build and run an end-to-end AI workload on the example of the job recommendation system" | ||
authors = [ | ||
{name = "Copyright © 2020 Intel Corporation"} | ||
] | ||
license = {text = "MIT"} | ||
readme = "README.md" | ||
requires-python = ">=3.11" | ||
dependencies = [ | ||
"accelerate>=1.4.0", | ||
"datasets>=3.3.2", | ||
"intel-extension-for-tensorflow>=2.15.0.2", | ||
"intel-extension-for-tensorflow-lib>=2.15.0.2.2", | ||
"ipykernel>=6.29.5", | ||
"jinja2>=3.1.6", | ||
"matplotlib>=3.10.1", | ||
"nltk>=3.9.1", | ||
"pip>=25.0.1", | ||
"seaborn>=0.13.2", | ||
"sentence-transformers>=3.4.1", | ||
"spacy>=3.8.4", | ||
"transformers>=4.49.0", | ||
"wordcloud>=1.9.4", | ||
] | ||
[dependency-groups] | ||
dev = [ | ||
"ipykernel>=6.29.5", | ||
"jupyter>=1.1.1", | ||
] | ||
[[tool.uv.index]] | ||
url = "https://software.repos.intel.com/python/pypi" | ||
|
||
|
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
4,005 changes: 4,005 additions & 0 deletions
4,005
AI-and-Analytics/End-to-end-Workloads/JobRecommendationSystem/uv.lock
Large diffs are not rendered by default.
Oops, something went wrong.
31 changes: 31 additions & 0 deletions
31
...eatures-and-Functionality/INC_QuantizationAwareTraining_TextClassification/pyproject.toml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
[project] | ||
name = "fine_tuning_text_classification_model_with_intel_neural_compressor" | ||
version = "0.1.0" | ||
description = "This sample demonstrates how to fine-tune text model for emotion classification task using Intel® Neural Compressor Quantization Aware Training (QAT)." | ||
authors = [ | ||
{name = "Copyright © 2023 Intel Corporation"} | ||
] | ||
license = {text = "MIT"} | ||
readme = "README.md" | ||
requires-python = ">=3.10" | ||
dependencies = [ | ||
"transformers (>=4.36,<4.46)", # Adjusted to match the compatible range | ||
"evaluate (>=0.4.3,<0.5.0)", | ||
"accelerate (>=1.4.0,<2.0.0)", | ||
"datasets (>=3.3.2,<4.0.0)", | ||
"neural-compressor (>=2.2.0,<3.0)", # Adjusted to match the compatible range | ||
"optimum-intel[neural-compressor] (>=1.18.0,<1.22.0)" # Added to ensure compatibility | ||
] | ||
|
||
|
||
[project.scripts] | ||
python-validate = "INC_QuantizationAwareTraining_TextClassification:main" | ||
|
||
[build-system] | ||
requires = ["setuptools", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[dependency-groups] | ||
dev = [ | ||
"ipykernel>=6.29.5", | ||
] |
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
2,819 changes: 2,819 additions & 0 deletions
2,819
...ytics/Features-and-Functionality/INC_QuantizationAwareTraining_TextClassification/uv.lock
Large diffs are not rendered by default.
Oops, something went wrong.
15 changes: 15 additions & 0 deletions
15
...Analytics/Features-and-Functionality/IntelPython_XGBoost_daal4pyPrediction/pyproject.toml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[project] | ||
name = "intelpython-xgboost-daal4pyprediction" | ||
version = "0.1.0" | ||
description = "Add your description here" | ||
readme = "README.md" | ||
requires-python = ">=3.11" | ||
dependencies = [ | ||
"daal4py>=2024.7.0", | ||
"ipykernel>=6.29.5", | ||
"jupyter>=1.1.1", | ||
"matplotlib>=3.10.1", | ||
"pandas>=2.2.3", | ||
"scikit-learn>=1.6.1", | ||
"xgboost>=2.1.4", | ||
] |
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
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.
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