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.
55The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
66and 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
Original file line number Diff line number Diff 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 ,
You can’t perform that action at this time.
0 commit comments