Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.6.3 #543

Merged
merged 2 commits into from
Jan 23, 2024
Merged

1.6.3 #543

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
Changelog
====

### 1.6.3

Release date: 01/11/24
* Add "Flax" and "Pax" frameworks

### 1.6.2

Release date: 01/09/24
* Add "Other" framework

### 1.6.1
Release date: 01/08/24
* Fix dataset/model upload.
Expand Down
3 changes: 3 additions & 0 deletions KaggleSwagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1816,11 +1816,14 @@ definitions:
- tfJs
- pyTorch
- jax
- flax
- pax
- coral
- scikitLearn
- mxnet
- onnx
- keras
- other
overview:
type: string
description: The overview of the model instance (markdown)
Expand Down
2 changes: 1 addition & 1 deletion kaggle/api/kaggle_api_extended.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ def __repr__(self):


class KaggleApi(KaggleApi):
__version__ = '1.6.1'
__version__ = '1.6.3'

CONFIG_NAME_PROXY = 'proxy'
CONFIG_NAME_COMPETITION = 'competition'
Expand Down
2 changes: 1 addition & 1 deletion kaggle/models/model_new_instance_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def framework(self, framework):
"""
if framework is None:
raise ValueError("Invalid value for `framework`, must not be `None`") # noqa: E501
allowed_values = ["tensorFlow1", "tensorFlow2", "tfLite", "tfJs", "pyTorch", "jax", "coral", "scikitLearn", "mxnet", "onnx", "keras"] # noqa: E501
allowed_values = ["tensorFlow1", "tensorFlow2", "tfLite", "tfJs", "pyTorch", "jax", "flax", "pax", "coral", "scikitLearn", "mxnet", "onnx", "keras", "other"] # noqa: E501
if framework not in allowed_values:
raise ValueError(
"Invalid value for `framework` ({0}), must be one of {1}" # noqa: E501
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

setup(
name='kaggle',
version='1.6.1',
version='1.6.3',
description='Kaggle API',
long_description=
('Official API for https://www.kaggle.com, accessible using a command line '
Expand Down