Skip to content

Commit 03465be

Browse files
committed
[CLIENT] Closed UNB-2434: Models & Datasets.
1 parent 4724691 commit 03465be

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## [Unreleased]
9+
10+
# Fixed
11+
12+
* Fixed link to project page when loading / creating a project.
13+
14+
# Changed
15+
16+
* Removed links when uploading dataset and models. Just the project link is appropriate.
17+
818
## [0.3.0a1]
919

1020
# Changed

unboxapi/__init__.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -700,9 +700,7 @@ def add_model(
700700
)
701701
os.remove("template_model.py")
702702

703-
print(
704-
f"Uploading model to Unbox! Check out https://unbox.ai/models to have a look!"
705-
)
703+
print(f"Adding your model to Unbox! Check out the project page to have a look.")
706704
return Model(modeldata)
707705

708706
def add_dataset(
@@ -972,9 +970,7 @@ def add_dataset(
972970
featureNames=feature_names,
973971
categoricalFeatureNames=categorical_feature_names,
974972
)
975-
print(
976-
f"Uploading dataset to Unbox! Check out https://unbox.ai/datasets to have a look!"
977-
)
973+
print(f"Adding your dataset to Unbox! Check out the project page to have a look.")
978974
return Dataset(
979975
self.upload(
980976
endpoint=endpoint,

0 commit comments

Comments
 (0)