Skip to content

Commit 08fdc26

Browse files
ngraylunajohndmulhausen
authored andcommitted
Manual SDK Release for docs 19.8 (#1147)
Manual 19.8 SDK Docs release PR created on wandb/docugen to fix action.yml file: wandb/docugen#55
1 parent 0f19428 commit 08fdc26

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+258
-254
lines changed

content/ref/python/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@ For reference documentation, see https://docs.wandb.com/ref/python.
4444

4545
| Other Members | |
4646
| :--- | :--- |
47-
| `__version__`<a id="__version__"></a> | `'0.19.7'` |
47+
| `__version__`<a id="__version__"></a> | `'0.19.8'` |
4848
| `config`<a id="config"></a> | |
4949
| `summary`<a id="summary"></a> | |

content/ref/python/agent.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: agent
33
---
44

5-
{{< cta-button githubLink=https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/wandb_agent.py#L532-L576 >}}
5+
{{< cta-button githubLink=https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/wandb_agent.py#L532-L576 >}}
66

77
Start one or more sweep agents.
88

content/ref/python/artifact.md

+34-30
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Artifact
33
---
44

5-
{{< cta-button githubLink=https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/artifacts/artifact.py#L95-L2409 >}}
5+
{{< cta-button githubLink=https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/artifacts/artifact.py#L96-L2410 >}}
66

77
Flexible and lightweight building block for dataset and model versioning.
88

@@ -27,6 +27,8 @@ begin with `add`. Once the artifact has all the desired files, you can call
2727
| `type` | The artifact's type. Use the type of an artifact to both organize and differentiate artifacts. You can use any string that contains letters, numbers, underscores, hyphens, and dots. Common types include `dataset` or `model`. Include `model` within your type string if you want to link the artifact to the W&B Model Registry. |
2828
| `description` | A description of the artifact. For Model or Dataset Artifacts, add documentation for your standardized team model or dataset card. View an artifact's description programmatically with the `Artifact.description` attribute or programmatically with the W&B App UI. W&B renders the description as markdown in the W&B App. |
2929
| `metadata` | Additional information about an artifact. Specify metadata as a dictionary of key-value pairs. You can specify no more than 100 total keys. |
30+
| `incremental` | Use `Artifact.new_draft()` method instead to modify an existing artifact. |
31+
| `use_as` | W&B Launch specific parameter. Not recommended for general use. |
3032

3133
| Returns | |
3234
| :--- | :--- |
@@ -67,7 +69,7 @@ begin with `add`. Once the artifact has all the desired files, you can call
6769

6870
### `add`
6971

70-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/artifacts/artifact.py#L1481-L1572)
72+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/artifacts/artifact.py#L1487-L1578)
7173

7274
```python
7375
add(
@@ -95,7 +97,7 @@ Add wandb.WBValue `obj` to the artifact.
9597

9698
### `add_dir`
9799

98-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/artifacts/artifact.py#L1336-L1396)
100+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/artifacts/artifact.py#L1342-L1402)
99101

100102
```python
101103
add_dir(
@@ -122,7 +124,7 @@ Add a local directory to the artifact.
122124

123125
### `add_file`
124126

125-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/artifacts/artifact.py#L1283-L1334)
127+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/artifacts/artifact.py#L1289-L1340)
126128

127129
```python
128130
add_file(
@@ -157,7 +159,7 @@ Add a local file to the artifact.
157159

158160
### `add_reference`
159161

160-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/artifacts/artifact.py#L1398-L1479)
162+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/artifacts/artifact.py#L1404-L1485)
161163

162164
```python
163165
add_reference(
@@ -209,7 +211,7 @@ blank.
209211

210212
### `checkout`
211213

212-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/artifacts/artifact.py#L1992-L2020)
214+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/artifacts/artifact.py#L1993-L2021)
213215

214216
```python
215217
checkout(
@@ -236,7 +238,7 @@ artifact.
236238

237239
### `delete`
238240

239-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/artifacts/artifact.py#L2130-L2149)
241+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/artifacts/artifact.py#L2131-L2150)
240242

241243
```python
242244
delete(
@@ -259,7 +261,7 @@ source artifact is unaffected.
259261

260262
### `download`
261263

262-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/artifacts/artifact.py#L1750-L1801)
264+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/artifacts/artifact.py#L1756-L1807)
263265

264266
```python
265267
download(
@@ -294,7 +296,7 @@ the artifact.
294296

295297
### `file`
296298

297-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/artifacts/artifact.py#L2062-L2086)
299+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/artifacts/artifact.py#L2063-L2087)
298300

299301
```python
300302
file(
@@ -319,7 +321,7 @@ Download a single file artifact to the directory you specify with `root`.
319321

320322
### `files`
321323

322-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/artifacts/artifact.py#L2088-L2105)
324+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/artifacts/artifact.py#L2089-L2106)
323325

324326
```python
325327
files(
@@ -345,7 +347,7 @@ Iterate over all files stored in this artifact.
345347

346348
### `finalize`
347349

348-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/artifacts/artifact.py#L896-L904)
350+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/artifacts/artifact.py#L902-L910)
349351

350352
```python
351353
finalize() -> None
@@ -360,7 +362,7 @@ when you log the artifact with `log_artifact`.
360362

361363
### `get`
362364

363-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/artifacts/artifact.py#L1667-L1712)
365+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/artifacts/artifact.py#L1673-L1718)
364366

365367
```python
366368
get(
@@ -384,7 +386,7 @@ Get the WBValue object located at the artifact relative `name`.
384386

385387
### `get_added_local_path_name`
386388

387-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/artifacts/artifact.py#L1714-L1726)
389+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/artifacts/artifact.py#L1720-L1732)
388390

389391
```python
390392
get_added_local_path_name(
@@ -404,7 +406,7 @@ Get the artifact relative name of a file added by a local filesystem path.
404406

405407
### `get_entry`
406408

407-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/artifacts/artifact.py#L1646-L1665)
409+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/artifacts/artifact.py#L1652-L1671)
408410

409411
```python
410412
get_entry(
@@ -429,7 +431,7 @@ Get the entry with the given name.
429431

430432
### `get_path`
431433

432-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/artifacts/artifact.py#L1638-L1644)
434+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/artifacts/artifact.py#L1644-L1650)
433435

434436
```python
435437
get_path(
@@ -441,7 +443,7 @@ Deprecated. Use `get_entry(name)`.
441443

442444
### `is_draft`
443445

444-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/artifacts/artifact.py#L906-L911)
446+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/artifacts/artifact.py#L912-L917)
445447

446448
```python
447449
is_draft() -> bool
@@ -453,7 +455,7 @@ Returns: Boolean. `False` if artifact is saved. `True` if artifact is not saved.
453455

454456
### `json_encode`
455457

456-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/artifacts/artifact.py#L2337-L2344)
458+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/artifacts/artifact.py#L2338-L2345)
457459

458460
```python
459461
json_encode() -> dict[str, Any]
@@ -467,7 +469,7 @@ Returns the artifact encoded to the JSON format.
467469

468470
### `link`
469471

470-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/artifacts/artifact.py#L2176-L2204)
472+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/artifacts/artifact.py#L2177-L2205)
471473

472474
```python
473475
link(
@@ -489,7 +491,7 @@ Link this artifact to a portfolio (a promoted collection of artifacts).
489491

490492
### `logged_by`
491493

492-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/artifacts/artifact.py#L2293-L2335)
494+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/artifacts/artifact.py#L2294-L2336)
493495

494496
```python
495497
logged_by() -> (Run | None)
@@ -507,15 +509,17 @@ Get the W&B run that originally logged the artifact.
507509

508510
### `new_draft`
509511

510-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/artifacts/artifact.py#L420-L451)
512+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/artifacts/artifact.py#L424-L457)
511513

512514
```python
513515
new_draft() -> Artifact
514516
```
515517

516518
Create a new draft artifact with the same content as this committed artifact.
517519

518-
The artifact returned can be extended or modified and logged as a new version.
520+
Modifying an existing artifact creates a new artifact version known
521+
as an "incremental artifact". The artifact returned can be extended or
522+
modified and logged as a new version.
519523

520524
| Returns | |
521525
| :--- | :--- |
@@ -527,7 +531,7 @@ The artifact returned can be extended or modified and logged as a new version.
527531

528532
### `new_file`
529533

530-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/artifacts/artifact.py#L1240-L1281)
534+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/artifacts/artifact.py#L1246-L1287)
531535

532536
```python
533537
@contextlib.contextmanager
@@ -556,7 +560,7 @@ Open a new temporary file and add it to the artifact.
556560

557561
### `remove`
558562

559-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/artifacts/artifact.py#L1608-L1636)
563+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/artifacts/artifact.py#L1614-L1642)
560564

561565
```python
562566
remove(
@@ -577,7 +581,7 @@ Remove an item from the artifact.
577581

578582
### `save`
579583

580-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/artifacts/artifact.py#L916-L955)
584+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/artifacts/artifact.py#L922-L961)
581585

582586
```python
583587
save(
@@ -598,7 +602,7 @@ run, a run of type "auto" is created to track this artifact.
598602

599603
### `unlink`
600604

601-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/artifacts/artifact.py#L2206-L2221)
605+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/artifacts/artifact.py#L2207-L2222)
602606

603607
```python
604608
unlink() -> None
@@ -613,7 +617,7 @@ Unlink this artifact if it is currently a member of a portfolio (a promoted coll
613617

614618
### `used_by`
615619

616-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/artifacts/artifact.py#L2247-L2291)
620+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/artifacts/artifact.py#L2248-L2292)
617621

618622
```python
619623
used_by() -> list[Run]
@@ -631,7 +635,7 @@ Get a list of the runs that have used this artifact.
631635

632636
### `verify`
633637

634-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/artifacts/artifact.py#L2022-L2060)
638+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/artifacts/artifact.py#L2023-L2061)
635639

636640
```python
637641
verify(
@@ -655,7 +659,7 @@ cross-referenced against the artifact's manifest. References are not verified.
655659

656660
### `wait`
657661

658-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/artifacts/artifact.py#L965-L989)
662+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/artifacts/artifact.py#L971-L995)
659663

660664
```python
661665
wait(
@@ -675,7 +679,7 @@ If needed, wait for this artifact to finish logging.
675679

676680
### `__getitem__`
677681

678-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/artifacts/artifact.py#L1210-L1222)
682+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/artifacts/artifact.py#L1216-L1228)
679683

680684
```python
681685
__getitem__(
@@ -699,7 +703,7 @@ Get the WBValue object located at the artifact relative `name`.
699703

700704
### `__setitem__`
701705

702-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/artifacts/artifact.py#L1224-L1238)
706+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/artifacts/artifact.py#L1230-L1244)
703707

704708
```python
705709
__setitem__(

content/ref/python/controller.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: controller
33
---
44

5-
{{< cta-button githubLink=https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/wandb_sweep.py#L95-L119 >}}
5+
{{< cta-button githubLink=https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/wandb_sweep.py#L95-L119 >}}
66

77
Public sweep controller constructor.
88

content/ref/python/data-types/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ flexible containers for information, like tables and HTML, and more.
1414
For more on logging media, see [our guide](https://docs.wandb.com/guides/track/log/media)
1515

1616
For more on logging structured data for interactive dataset and model analysis,
17-
see [our guide to W&B Tables](https://docs.wandb.com/guides/tables/).
17+
see [our guide to W&B Tables](https://docs.wandb.com/guides/models/tables/).
1818

1919
All of these special data types are subclasses of WBValue. All the data types
2020
serialize to JSON, since that is what wandb uses to save the objects locally

content/ref/python/data-types/audio.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Audio
33
---
44

5-
{{< cta-button githubLink=https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/data_types/audio.py#L13-L157 >}}
5+
{{< cta-button githubLink=https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/data_types/audio.py#L13-L157 >}}
66

77
Wandb class for audio clips.
88

@@ -22,7 +22,7 @@ Audio(
2222

2323
### `durations`
2424

25-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/data_types/audio.py#L115-L117)
25+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/data_types/audio.py#L115-L117)
2626

2727
```python
2828
@classmethod
@@ -33,15 +33,15 @@ durations(
3333

3434
### `resolve_ref`
3535

36-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/data_types/audio.py#L131-L143)
36+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/data_types/audio.py#L131-L143)
3737

3838
```python
3939
resolve_ref()
4040
```
4141

4242
### `sample_rates`
4343

44-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/data_types/audio.py#L119-L121)
44+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/data_types/audio.py#L119-L121)
4545

4646
```python
4747
@classmethod

content/ref/python/data-types/boundingboxes2d.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: BoundingBoxes2D
33
---
44

5-
{{< cta-button githubLink=https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/data_types/helper_types/bounding_boxes_2d.py#L16-L313 >}}
5+
{{< cta-button githubLink=https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/data_types/helper_types/bounding_boxes_2d.py#L16-L313 >}}
66

77
Format images with 2D bounding box overlays for logging to W&B.
88

@@ -136,7 +136,7 @@ run.log({"driving_scene": table})
136136

137137
### `type_name`
138138

139-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/data_types/helper_types/bounding_boxes_2d.py#L233-L235)
139+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/data_types/helper_types/bounding_boxes_2d.py#L233-L235)
140140

141141
```python
142142
@classmethod
@@ -145,7 +145,7 @@ type_name() -> str
145145

146146
### `validate`
147147

148-
[View source](https://www.github.com/wandb/wandb/tree/2678738e59629208ad4770e3d36300a272147c05/wandb/sdk/data_types/helper_types/bounding_boxes_2d.py#L237-L294)
148+
[View source](https://www.github.com/wandb/wandb/tree/637bddf198525810add5804059001b1b319d6ad1/wandb/sdk/data_types/helper_types/bounding_boxes_2d.py#L237-L294)
149149

150150
```python
151151
validate(

0 commit comments

Comments
 (0)