Skip to content

Commit 722d18c

Browse files
authored
Increment Client version to 0.14.4 (#602)
* Update docstring * Update changelog * Update version
1 parent 0d38502 commit 722d18c

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

client/verta/docs/changelog.rst

+10
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,16 @@ Release Notes
3232
<>`__
3333
3434
35+
v0.14.4 (2020-05-04)
36+
--------------------
37+
38+
Backwards Incompatibilities
39+
^^^^^^^^^^^^^^^^^^^^^^^^^^^
40+
- `run.log_training_data() no longer uploads a "train_data" artifact, and instead directly
41+
generates a histogram for deployment data monitoring
42+
<https://github.com/VertaAI/modeldb/pull/576>`__
43+
44+
3545
v0.14.3 (2020-04-20)
3646
--------------------
3747

client/verta/verta/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
__maintainer_email__ = "[email protected]"
77
__title__ = "verta"
88
__url__ = "https://www.verta.ai/"
9-
__version__ = "0.14.3"
9+
__version__ = "0.14.4"

client/verta/verta/client.py

+4
Original file line numberDiff line numberDiff line change
@@ -3562,6 +3562,10 @@ def log_training_data(self, train_features, train_targets, overwrite=False):
35623562
"""
35633563
Associate training data with this Experiment Run.
35643564
3565+
.. versionchanged:: 0.14.4
3566+
Instead of uploading the data itself as a CSV artifact ``'train_data'``, this method now
3567+
generates a histogram for internal use by our deployment data monitoring system.
3568+
35653569
Parameters
35663570
----------
35673571
train_features : pd.DataFrame

0 commit comments

Comments
 (0)