-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (34 loc) · 1.22 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Test active learning in drug discovery
on:
- push
- pull_request
jobs:
Test:
name: Test active learning in drug discovery
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install conda environment
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: active_learning_dd
environment-file: conda_cpu_env.yml
auto-activate-base: false
miniconda-version: 'latest'
- name: Install active_learning_dd package
shell: bash --login {0}
run: pip install -e .
- name: Test sample data runner
shell: bash --login {0}
run: |
cd chtc_runners
python sample_data_runner.py \
--pipeline_params_json_file=../param_configs/sample_data_config.json \
--hyperparams_json_file=../param_configs/experiment_PstP_hyperparams/sampled_hyparams/ClusterBasedWCSelector_609.json \
--iter_max=5 \
--no-precompute_dissimilarity_matrix \
--initial_dataset_file=../datasets/sample_data/training_data/iter_0.csv.gz