version bump

This commit is contained in:
allegroai 2022-10-14 10:11:23 +03:00
parent dd17fca080
commit 5ece83fe9f
2 changed files with 2 additions and 2 deletions

View File

@ -1926,11 +1926,11 @@ class Task(_Task):
:param str extension_name: File extension which indicates the format the artifact should be stored as. :param str extension_name: File extension which indicates the format the artifact should be stored as.
The following are supported, depending on the artifact type The following are supported, depending on the artifact type
(default value applies when extension_name is None): (default value applies when extension_name is None):
- Any - ``.pkl`` if passed supersedes any other serialization type, and always pickles the object
- dict - ``.json``, ``.yaml`` (default ``.json``) - dict - ``.json``, ``.yaml`` (default ``.json``)
- pandas.DataFrame - ``.csv.gz``, ``.parquet``, ``.feather``, ``.pickle`` (default ``.csv.gz``) - pandas.DataFrame - ``.csv.gz``, ``.parquet``, ``.feather``, ``.pickle`` (default ``.csv.gz``)
- numpy.ndarray - ``.npz``, ``.csv.gz`` (default ``.npz``) - numpy.ndarray - ``.npz``, ``.csv.gz`` (default ``.npz``)
- PIL.Image - whatever extensions PIL supports (default ``.png``) - PIL.Image - whatever extensions PIL supports (default ``.png``)
- Any object - ``.pkl`` (if this extension is passed, the object will be pickled)
- In case the ``serialization_function`` argument is set - any extension is supported - In case the ``serialization_function`` argument is set - any extension is supported
:param Callable[Any, Union[bytes, bytearray]] serialization_function: A serialization function that takes one :param Callable[Any, Union[bytes, bytearray]] serialization_function: A serialization function that takes one

View File

@ -1 +1 @@
__version__ = '1.7.1' __version__ = '1.7.2rc0'