Skip to content
This repository was archived by the owner on Sep 9, 2026. It is now read-only.

Commit 02a1f69

Browse files
chore(docs): sync up README from docarray
Signed-off-by: [email protected] <Jina Dev Bot>
1 parent 1d2397d commit 02a1f69

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -167,10 +167,10 @@ Let's use DocArray and the [Totally Looks Like](https://sites.google.com/view/to
167167
</thead>
168168
<tbody>
169169
<tr align="center">
170-
<td><img src="/api/v1/web-embed/proxy?proxyUrl=https%3A%2F%2Fgithub.com%2F%253Cspan%2520class%3D&mode=full"x x-first x-last">jina-ai/docarray/blob/main/.github/README-img/left-00018.jpg?raw=true" alt="Visualizing top-9 matches using DocArray API" width="50%"></td>
171-
<td><img src="/api/v1/web-embed/proxy?proxyUrl=https%3A%2F%2Fgithub.com%2F%253Cspan%2520class%3D&mode=full"x x-first x-last">jina-ai/docarray/blob/main/.github/README-img/right-00018.jpg?raw=true" alt="Visualizing top-9 matches using DocArray API" width="50%"></td>
172-
<td><img src="/api/v1/web-embed/proxy?proxyUrl=https%3A%2F%2Fgithub.com%2F%253Cspan%2520class%3D&mode=full"x x-first x-last">jina-ai/docarray/blob/main/.github/README-img/left-00131.jpg?raw=true" alt="Visualizing top-9 matches using DocArray API" width="50%"></td>
173-
<td><img src="/api/v1/web-embed/proxy?proxyUrl=https%3A%2F%2Fgithub.com%2F%253Cspan%2520class%3D&mode=full"x x-first x-last">jina-ai/docarray/blob/main/.github/README-img/right-00131.jpg?raw=true" alt="Visualizing top-9 matches using DocArray API" width="50%"></td>
170+
<td><img src="/api/v1/web-embed/proxy?proxyUrl=https%3A%2F%2Fgithub.com%2F%253Cspan%2520class%3D&mode=full"x x-first x-last">docarray/docarray/blob/main/.github/README-img/left-00018.jpg?raw=true" alt="Visualizing top-9 matches using DocArray API" width="50%"></td>
171+
<td><img src="/api/v1/web-embed/proxy?proxyUrl=https%3A%2F%2Fgithub.com%2F%253Cspan%2520class%3D&mode=full"x x-first x-last">docarray/docarray/blob/main/.github/README-img/right-00018.jpg?raw=true" alt="Visualizing top-9 matches using DocArray API" width="50%"></td>
172+
<td><img src="/api/v1/web-embed/proxy?proxyUrl=https%3A%2F%2Fgithub.com%2F%253Cspan%2520class%3D&mode=full"x x-first x-last">docarray/docarray/blob/main/.github/README-img/left-00131.jpg?raw=true" alt="Visualizing top-9 matches using DocArray API" width="50%"></td>
173+
<td><img src="/api/v1/web-embed/proxy?proxyUrl=https%3A%2F%2Fgithub.com%2F%253Cspan%2520class%3D&mode=full"x x-first x-last">docarray/docarray/blob/main/.github/README-img/right-00131.jpg?raw=true" alt="Visualizing top-9 matches using DocArray API" width="50%"></td>
174174
</tr>
175175
</tbody>
176176
</table>
@@ -190,7 +190,7 @@ left_da = DocumentArray.from_files('left/*.jpg')
190190
Or you can simply pull it from Jina Cloud:
191191

192192
```python
193-
left_da = DocumentArray.pull('demo-leftda', show_progress=True)
193+
left_da = DocumentArray.pull('jina-ai/demo-leftda', show_progress=True)
194194
```
195195

196196
**Note**
@@ -206,7 +206,7 @@ left_da.plot_image_sprites()
206206
```
207207

208208
<p align="center">
209-
<a href="https://docarray.jina.ai"><img src="https://github.com/jina-ai/docarray/blob/main/.github/README-img/sprite.png?raw=true" alt="Load totally looks like dataset with docarray API" width="60%"></a>
209+
<a href="https://docarray.jina.ai"><img src="https://github.com/docarray/docarray/blob/main/.github/README-img/sprite.png?raw=true" alt="Load totally looks like dataset with docarray API" width="60%"></a>
210210
</p>
211211

212212
### Apply preprocessing
@@ -252,7 +252,7 @@ left_da.plot_embeddings(image_sprites=True)
252252
```
253253

254254
<p align="center">
255-
<a href="https://docarray.jina.ai"><img src="https://github.com/jina-ai/docarray/blob/main/.github/README-img/tsne.gif?raw=true" alt="Visualizing embedding via tSNE and embedding projector" width="90%"></a>
255+
<a href="https://docarray.jina.ai"><img src="https://github.com/docarray/docarray/blob/main/.github/README-img/tsne.gif?raw=true" alt="Visualizing embedding via tSNE and embedding projector" width="90%"></a>
256256
</p>
257257

258258
Fun is fun, but recall our goal is to match left images against right images and so far we have only handled the left. Let's repeat the same procedure for the right:
@@ -268,7 +268,7 @@ Fun is fun, but recall our goal is to match left images against right images and
268268

269269
```python
270270
right_da = (
271-
DocumentArray.pull('demo-rightda', show_progress=True)
271+
DocumentArray.pull('jina-ai/demo-rightda', show_progress=True)
272272
.apply(preproc)
273273
.embed(model, device='cuda')[:1000]
274274
)
@@ -398,7 +398,7 @@ left_da.push('my_shared_da')
398398
Now anyone who knows the token `my_shared_da` can pull and work on it.
399399

400400
```python
401-
left_da = DocumentArray.pull('my_shared_da')
401+
left_da = DocumentArray.pull('<username>/my_shared_da')
402402
```
403403

404404
Intrigued? That's only scratching the surface of what DocArray is capable of. [Read our docs to learn more](https://docarray.jina.ai).

0 commit comments

Comments
 (0)