Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Update all dependencies #1668

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update version defaults to current
  • Loading branch information
montanalow committed Jan 11, 2025
commit 0bca7ffd4099c23ab52d2dcb22a7f3f622cca02a
2 changes: 1 addition & 1 deletion 2 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ docker run \
-v postgresml_data:/var/lib/postgresql \
-p 5433:5432 \
-p 8000:8000 \
ghcr.io/postgresml/postgresml:2.7.12 \
ghcr.io/postgresml/postgresml:2.9.4 \
sudo -u postgresml psql -d postgresml
```

Expand Down
2 changes: 1 addition & 1 deletion 2 packages/postgresml-dashboard/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ dir="/tmp/postgresml-dashboard"
deb_dir="$dir/deb-build"
source_dir="$dir/source"
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
export PACKAGE_VERSION=${1:-"2.7.12"}
export PACKAGE_VERSION=${1:-"2.9.4"}
export GITHUB_STARS=$(curl -s "https://api.github.com/repos/postgresml/postgresml" | grep stargazers_count | cut -d : -f 2 | tr -d " " | tr -d ",")
if [[ $(arch) == "x86_64" ]]; then
export ARCH=amd64
Expand Down
2 changes: 1 addition & 1 deletion 2 packages/postgresml-dashboard/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
package_version="$1"

if [[ -z "$package_version" ]]; then
echo "Usage: $0 <package version, e.g. 2.7.12>"
echo "Usage: $0 <package version, e.g. 2.9.4>"
exit 1
fi

Expand Down
2 changes: 1 addition & 1 deletion 2 packages/postgresml-python/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
deb_dir="/tmp/postgresml-python/deb-build"
major=${1:-"14"}

export PACKAGE_VERSION=${1:-"2.7.12"}
export PACKAGE_VERSION=${1:-"2.9.4"}
export PYTHON_VERSION=${2:-"3.10"}

if [[ $(arch) == "x86_64" ]]; then
Expand Down
2 changes: 1 addition & 1 deletion 2 packages/postgresml-python/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ fi

if [[ -z "$package_version" ]]; then
echo "postgresml-python package build and release script"
echo "usage: $0 <package version, e.g. 2.7.12>"
echo "usage: $0 <package version, e.g. 2.9.4>"
exit 1
fi

Expand Down
5 changes: 3 additions & 2 deletions 5 packages/postgresml/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -e

SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )

export PACKAGE_VERSION=${1:-"2.7.12"}
export PACKAGE_VERSION=${1:-"2.9.4"}
export PGVERSION=${2:-"14"}
export UBUNTU_VERSION=${3:-"24.04"}

Expand All @@ -27,4 +27,5 @@ dpkg-deb \
--root-owner-group \
-z1 \
--build "$deb_dir" \
postgresml-${PGVERSION}-${PACKAGE_VERSION}-ubuntu${UBUNTU_VERSION}-all.deb
postgresml-${PGVERSION}-${PACKAGE_VERSION}-ubuntu${UBUNTU_VERSION}-all.deb

2 changes: 1 addition & 1 deletion 2 packages/postgresml/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package_version="$1"

if [[ -z "$package_version" ]]; then
echo "postgresml package build and release script"
echo "usage: $0 <package version, e.g. 2.7.12>"
echo "usage: $0 <package version, e.g. 2.9.4>"
exit 1
fi

Expand Down
2 changes: 1 addition & 1 deletion 2 packages/postgresql-pgml/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )

if [[ -z "${1}" ]]; then
echo "Usage: $0 <package version, e.g. 2.7.12>"
echo "Usage: $0 <package version, e.g. 2.9.4>"
exit 1
fi

Expand Down
2 changes: 1 addition & 1 deletion 2 pgml-cms/docs/open-source/pgml/api/pgml.tune.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ Without tuning, DistilBERT classifies every single movie review as `positive`, a

Once our model has been fine tuned on the dataset, it'll be saved and deployed with a Project visible in the Dashboard, just like models built from simpler algorithms.

[![Fine Tuning](https://github.com/postgresml/postgresml/raw/v2.7.12/dashboard/static/images/dashboard/tuning.png)](https://github.com/postgresml/postgresml/blob/v2.7.12/dashboard/static/images/dashboard/tuning.png)
[![Fine Tuning](https://github.com/postgresml/postgresml/raw/v2.9.4/dashboard/static/images/dashboard/tuning.png)](https://github.com/postgresml/postgresml/blob/v2.9.4/dashboard/static/images/dashboard/tuning.png)

#### Prepare the data

Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.