Skip to content
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

mlflow #7

Merged
merged 1 commit into from
Sep 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
12 changes: 5 additions & 7 deletions hubblescope/.abcli/download.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,20 +43,18 @@ function hubble_download() {
abcli_eval dryrun=$do_dryrun \
"$command_line"

if [ "$do_dryrun" == 0 ]; then
abcli_tags set $object_name hubble

abcli_relations set \
$object_name $hubble_object_name \
is-download-of
fi
[[ "$do_dryrun" == 0 ]] &&
abcli_tags set \
$object_name \
hubble,is-download-of.$hubble_object_name

[[ "$do_ingest" == 1 ]] &&
abcli_eval dryrun=$do_dryrun \
python3 -m hubblescope ingest \
--dataset_name $dataset_name \
--hubble_object_name $hubble_object_name \
--object_name $object_name
[[ $? -ne 0 ]] && return 1

[[ "$do_upload" == 1 ]] &&
abcli_upload - $object_name
Expand Down
2 changes: 1 addition & 1 deletion hubblescope/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

DESCRIPTION = f"{ICON} tools to access and process Hubble Space Telescope imagery and other datasets on AWS Open Data Registry."

VERSION = "4.37.1"
VERSION = "4.38.1"

MARQUEE = "https://github.com/kamangir/hubble/raw/main/assets/hst/u4ge0106r_c0m.gif"
Loading