bug fix for TransformerEstimator (#293)

* fix checkpoint naming + trial id for non-ray mode, fix the bug in running test mode, delete all the checkpoints in non-ray mode

* finished testing for checkpoint naming, delete checkpoint, ray, max iter = 1

* adding predict_proba, address PR 293's comments

close #293 #291
This commit is contained in:
Xueqing Liu
2021-11-23 14:26:39 -05:00
committed by GitHub
parent 85e21864ce
commit fd136b02d1
10 changed files with 316 additions and 83 deletions

View File

@@ -39,6 +39,8 @@ jobs:
- name: Install packages and dependencies
run: |
python -m pip install --upgrade pip wheel
pip install -e .
python -c "import flaml"
pip install -e .[test]
- name: If linux or mac, install ray
if: (matrix.os == 'macOS-latest' || matrix.os == 'ubuntu-latest') && matrix.python-version != '3.9'