File tree Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
6
6
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
7
7
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
+
8
18
## [ 0.3.0a1]
9
19
10
20
# Changed
Original file line number Diff line number Diff line change @@ -700,9 +700,7 @@ def add_model(
700
700
)
701
701
os .remove ("template_model.py" )
702
702
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." )
706
704
return Model (modeldata )
707
705
708
706
def add_dataset (
@@ -972,9 +970,7 @@ def add_dataset(
972
970
featureNames = feature_names ,
973
971
categoricalFeatureNames = categorical_feature_names ,
974
972
)
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." )
978
974
return Dataset (
979
975
self .upload (
980
976
endpoint = endpoint ,
You can’t perform that action at this time.
0 commit comments