8000 Tags · Paperspace/gradient-cli · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: Paperspace/gradient-cli

Tags

v2.0.6

Toggle v2.0.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Replace faulty chunk counting logic (#391)

v2.0.5

Toggle v2.0.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix(datasets): increase create version request timeout (#389)

v2.0.4

Toggle v2.0.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
chore(notebooks): remove deprecated option nb-1131 (#388)

v2.0.3

Toggle v2.0.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update README.md

v2.0.2

Toggle v2.0.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
chore(datasets): improve logging and retry logic for MPUs (#387)

This adds some basic retry logic for multipart upload parts so we don't
choke immediately if a single part fails for any reason. It also adds
some decidedly jank logging to update the end user on the progress of
large uploads. Unfortunately this can create some really noisy console
logs, but the way we have Halo implemented makes it just annoying enough
to do a cleaner job of things as to not be worthwhile. The important
thing is that users should now get relevant, timely information as to
how large uploads are progressing, or an informative error message if
the upload fails to complete for any reason.

v2.0.1

Toggle v2.0.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix(clusters): machineTypes list returns no data PLA-867 (#386)

* Include public cluster data by default. You cannot use --clusterId
to see public cluster data because of the way the endpoint works.

* When there are inactive vmTypes in the cluster the response does not
include enough info to render the table properly so inactive instances
are now filtered from the response.

v2.0.0

Toggle v2.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat: retire gradient v1 and v2 (#385)

Retire Jobs, Experiments, Deployments V2 and Tensorboards. These
features have been supplanted by workflows and deployments v3.

BREAKING CHANGE:
Removed clients for retired products

v1.11.0

Toggle v1.11.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat(datasets): allow multipart uploads for large datasets (#384)

This attempts to fall back to a multipart upload strategy with presigned
URLs in the event that a dataset is larger than 500MB

v1.10.0

Toggle v1.10.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat(deployments): add logs to python package (#382)

This hijacks some old crufty log machinery to enable log streaming from
the new Deployments V3. This exposes two new methods, one generator and
one that just dumps a buttload of logs in your lap.

By way of example:
```
>>> from gradient import gradient_deployments
>>> import json
>>>
>>>
>>> logs = gradient_deployments.get_deployment_logs(
...     deployment_id='6753a6cc-393a-478d-bc29-9e8828a0aa2f',
...     limit=5,
...     api_key='<REDACTED>')
>>> print(json.dumps(logs, indent=4))
[
    [
        2,
        "",
        "2021-12-13T21:41:39.711Z"
    ],
    [
        3,
        "  Welcome to Streamlit. Check out our demo in your browser.",
        "2021-12-13T21:41:39.711Z"
    ],
    [
        4,
        "",
        "2021-12-13T21:41:39.711Z"
    ],
    [
        5,
        "  Network URL: http://10.42.40.230:8501",
        "2021-12-13T21:41:39.711Z"
    ],
    [
        6,
        "  External URL: http://172.83.13.4:8501",
        "2021-12-13T21:41:39.711Z"
    ]
]
>>>
>>> logs = gradient_deployments.yield_deployment_logs(
...     deployment_id='6753a6cc-393a-478d-bc29-9e8828a0aa2f',
...     limit=5,
...     api_key='<REDACTED>')
>>> next(logs)
LogRow(line=2, message='', timestamp='2021-12-13T21:41:39.711Z')
```

v1.9.1

Toggle v1.9.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
sanfilip windows curses fix (#380)

* use windows-curses on windows

* fix readme inaccuracy

* fix missing comma; add clean to Makefile
0