-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* check onnx==1.10.1 * better error message * change skipping condition * one condition less strict on lightgbm
- Loading branch information
Showing
15 changed files
with
108 additions
and
10 deletions.
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 |
---|---|---|
|
@@ -13,6 +13,12 @@ jobs: | |
vmImage: 'ubuntu-latest' | ||
strategy: | ||
matrix: | ||
Python39-1101-RT181-xgb11: | ||
python.version: '3.9' | ||
ONNX_PATH: onnx==1.10.1 # '-i https://test.pypi.org/simple/ onnx==1.9.101' | ||
ONNXRT_PATH: onnxruntime==1.8.1 | ||
COREML_PATH: git+https://github.com/apple/[email protected] | ||
xgboost.version: '>=1.2' | ||
Python39-190-RT180-xgb11: | ||
python.version: '3.9' | ||
ONNX_PATH: onnx==1.9.0 | ||
|
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 |
---|---|---|
|
@@ -13,6 +13,20 @@ jobs: | |
vmImage: 'windows-latest' | ||
strategy: | ||
matrix: | ||
Python39-1101-RT181: | ||
python.version: '3.9' | ||
ONNX_PATH: 'onnx==1.10.1' # '-i https://test.pypi.org/simple/ onnx==1.9.101' | ||
ONNXRT_PATH: onnxruntime==1.8.1 | ||
COREML_PATH: git+https://github.com/apple/[email protected] | ||
sklearn.version: '' | ||
|
||
Python39-190-RT181: | ||
python.version: '3.9' | ||
ONNX_PATH: 'onnx==1.9.0' | ||
ONNXRT_PATH: onnxruntime==1.8.1 | ||
COREML_PATH: git+https://github.com/apple/[email protected] | ||
sklearn.version: '' | ||
|
||
Python39-190-RT180: | ||
python.version: '3.9' | ||
ONNX_PATH: onnx==1.9.0 | ||
|
@@ -66,15 +80,32 @@ jobs: | |
call activate py$(python.version) | ||
python -m pip install --upgrade pip numpy | ||
echo Test numpy installation... && python -c "import numpy" | ||
python -m pip install %COREML_PATH% %ONNX_PATH% | ||
python -m pip install scikit-learn | ||
python -m pip install %ONNX_PATH% | ||
python -m pip install humming-bird-ml --no-deps | ||
python -m pip install -r requirements.txt | ||
python -m pip install torch==1.8.1+cpu torchvision==0.9.1+cpu torchaudio===0.8.1 -f https://download.pytorch.org/whl/torch_stable.html | ||
displayName: 'Install dependencies (1)' | ||
- script: | | ||
call activate py$(python.version) | ||
python -m pip install -r requirements-dev.txt | ||
displayName: 'Install dependencies (2)' | ||
- script: | | ||
call activate py$(python.version) | ||
python -m pip install %COREML_PATH% | ||
displayName: 'Install coremltools' | ||
- script: | | ||
call activate py$(python.version) | ||
python -m pip install %ONNXRT_PATH% | ||
displayName: 'Install onnxruntime' | ||
- script: | | ||
call activate py$(python.version) | ||
python -m pip install scikit-learn$(sklearn.version) | ||
python -m pip show pytest | ||
displayName: 'Install dependencies' | ||
displayName: 'Install scikit-learn' | ||
- script: | | ||
call activate py$(python.version) | ||
|
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 |
---|---|---|
@@ -1,7 +1,6 @@ | ||
-f https://download.pytorch.org/whl/torch_stable.html | ||
catboost | ||
codecov | ||
coremltools | ||
cython | ||
dill | ||
flake8 | ||
|
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