Skip to content

Commit

Permalink
Update the GAMA repository location (#627)
Browse files Browse the repository at this point in the history
* Update the GAMA repository location

* Fix scikit-learn upperlimit for 23.0.0 release
  • Loading branch information
PGijsbers authored Jun 17, 2024
1 parent 072151e commit f4aa676
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion frameworks/GAMA/setup.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
HERE=$(dirname "$0")
VERSION=${1:-"stable"}
REPO=${2:-"https://github.com/PGijsbers/gama"}
REPO=${2:-"https://github.com/openml-labs/gama"}
PKG=${3:-"gama"}
if [[ "$VERSION" == "latest" ]]; then
VERSION="master"
Expand All @@ -23,4 +23,10 @@ else
PIP install -U -e ${TARGET_DIR}
fi

if [[ "$VERSION" == "23.0.0" ]]; then
# We include this only because this is the fixed version for the 2023Q2 definition.
echo "GAMA/setup.sh: Downgrading scikit-learn to compatible version."
PIP install --no-cache-dir -U "scikit-learn<1.3"
fi

PY -c "from gama import __version__; print(__version__)" >> "${HERE}/.setup/installed"
2 changes: 1 addition & 1 deletion resources/frameworks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ GAMA:
description: |
GAMA tries to find a good machine learning pipeline.
For the machine learning pipeline GAMA considers data preprocessing steps, various machine learning algorithms, and their possible hyperparameters configurations.
project: https://github.com/PGijsbers/gama
project: https://github.com/openml-labs/gama
refs: [https://joss.theoj.org/papers/10.21105/joss.01132]

H2OAutoML:
Expand Down

0 comments on commit f4aa676

Please sign in to comment.