Skip to content

Commit 98a728c

Browse files
committed
change install_alg to install. update user guide.
1 parent 3deaf60 commit 98a728c

File tree

4 files changed

+73
-117
lines changed

4 files changed

+73
-117
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ COPY --chown=$MAMBA_USER:$MAMBA_USER environment.yml /tmp/environment.yml
4545
RUN --mount=type=cache,target=/opt/conda/pkgs mamba env create -f /tmp/environment.yml
4646
SHELL ["mamba", "run", "-n", "srbench", "/bin/bash", "-c"]
4747
COPY . .
48-
RUN bash install_algorithms.sh
48+
RUN bash install.sh

docs/user_guide.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
# User Guide
22

3+
**NOTE**: if you are trying to reproduce the results from the 2022 Neurips Benchmark paper, you
4+
should check out the [v2.0 release](https://github.com/cavalab/srbench/releases/tag/v2.0) version of this repo.
5+
36
## Installation
47

8+
### Local install
9+
510
We have provided a [conda environment](environment.yml), [configuration script](configure.sh) and [installation script](install.sh) that should make installation straightforward.
611
We've currently tested this on Ubuntu and CentOS.
712
Steps:
@@ -20,7 +25,7 @@ conda env create -f environment.yml
2025
conda activate srbench
2126
```
2227

23-
2. Install the benchmark methods:
28+
2. Install the benchmark algorithms:
2429

2530
```bash
2631
bash install.sh
@@ -34,13 +39,17 @@ cd /path/to/pmlb
3439
git lfs pull
3540
```
3641

42+
### Docker install
43+
3744
For Docker users,
3845
```bash
3946
docker build --pull --rm -f "Dockerfile" -t srbench:latest "."
4047
```
4148

4249
## Reproducing the benchmark results
4350

51+
**NOTE**: these instructions are for the the [v2.0 release](https://github.com/cavalab/srbench/releases/tag/v2.0) version of this repo.
52+
4453
Experiments are launched from the `experiments/` folder via the script `analyze.py`.
4554
The script can be configured to run the experiment in parallel locally, on an LSF job scheduler, or on a SLURM job scheduler.
4655
To see the full set of options, run `python analyze.py -h`.

install.sh

+62-39
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,76 @@
1-
# note: make sure conda environment is installed
2-
# and activated before running install.
3-
# see configure.sh
4-
# or run this as:
5-
# conda run -n srbench bash install.sh
1+
# note: make sure conda srbench environment is installed
2+
set -e
3+
4+
if (($#==1)); #check if number of arguments is 1
5+
then
6+
subnames=($1)
7+
else
8+
subnames=$(ls algorithms/)
9+
fi
610

711
failed=()
812
succeeded=()
913

1014
# install methods
1115
echo "////////////////////////////////////////"
12-
echo "installing SR methods from scripts..."
16+
echo "installing SR methods..."
17+
echo ${subnames}
1318
echo "////////////////////////////////////////"
1419

15-
# move to methods folder
16-
cd experiment/methods/src/
17-
1820
# install all methods
19-
for install_file in $(ls *.sh) ; do
21+
for SUBNAME in ${subnames[@]} ; do
22+
2023
echo "vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv"
21-
echo ".................... Running $install_file..."
22-
23-
name=${install_file%.sh}
24-
# Option to redirect logs:
25-
# bash ${install_file} > "${name}.log" 2> "${name}.err"
26-
bash ${install_file}
27-
28-
if [ $? -gt 0 ];
29-
then
30-
# failed+=("${install_file}")
31-
failed+=("$name")
32-
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! $install_file FAILED"
24+
echo ".................... Installing $SUBNAME ..."
25+
26+
SUBFOLDER=algorithms/$SUBNAME
27+
SUBENV=srbench-$SUBNAME
28+
# install method
29+
# cd $SUBFOLDER
30+
pwd
31+
echo "Installing dependencies for ${SUBNAME}"
32+
echo "........................................"
33+
echo "Copying base environment"
34+
echo "........................................"
35+
conda create --name $SUBENV --clone srbench
36+
if test -f "environment.yml" ; then
37+
echo "Update alg env from environment.yml"
38+
echo "........................................"
39+
mamba env update -n $SUBENV -f ${SUBFOLDER}/environment.yml
40+
fi
41+
42+
if test -f "requirements.txt" ; then
43+
echo "Update alg env from requirements.txt"
44+
echo "........................................"
45+
mamba run -n srbench-${SUBENV} pip install -r ${SUBFOLDER}/requirements.txt
46+
fi
47+
48+
eval "$(conda shell.bash hook)"
49+
conda init bash
50+
conda activate $SUBENV
51+
if test -f "install.sh" ; then
52+
echo "running install.sh..."
53+
echo "........................................"
54+
cd $SUBFOLDER
55+
bash install.sh
56+
cd ../../
3357
else
34-
succeeded+=("$install_file")
35-
echo "........................................ $install_file complete"
58+
echo "::warning::No install.sh file found in ${SUBFOLDER}."
59+
echo " Assuming the method is a conda package specified in environment.yml."
3660
fi
37-
echo "^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^"
38-
done
3961

40-
echo "${#succeeded[@]} successful installs:"
41-
for s in ${succeeded[@]} ; do
42-
echo " "$s
43-
done
44-
echo "${#failed[@]} failed installs:"
45-
for f in ${failed[@]} ; do
46-
echo " "$f
47-
done
62+
# Copy files and environment
63+
# echo "Copying files and environment to experiment/methods ..."
64+
# echo "........................................"
65+
# cd ../../
66+
mkdir -p experiment/methods/$SUBNAME
67+
cp $SUBFOLDER/regressor.py experiment/methods/$SUBNAME/
68+
cp $SUBFOLDER/metadata.yml experiment/methods/$SUBNAME/
69+
touch experiment/methods/$SUBNAME/__init__.py
4870

49-
if [ ${#failed[@]} -gt 0 ] ; then
50-
exit 1
51-
else
52-
echo "All installations completed successfully."
53-
fi
71+
# export env
72+
echo "Exporting environment"
73+
# conda env export -n $SUBENV > $SUBFOLDER/environment.lock.yml
74+
conda env export -n $SUBENV > $SUBFOLDER/environment.lock.yml
75+
echo "^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^"
76+
done

install_algorithms.sh

-76
This file was deleted.

0 commit comments

Comments
 (0)