From e1a6fb56261e5e5512dc33ee4e6986a8d79683ef Mon Sep 17 00:00:00 2001 From: Sami Jaghouar Date: Tue, 29 Nov 2022 14:47:24 +0100 Subject: [PATCH 1/2] chore: update readme with instal intrsuction Signed-off-by: Sami Jaghouar --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 515dfde8038..22f09e63857 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,17 @@ see [here](https://github.com/docarray/docarray)._ DocArray is a library for **representing, sending and storing multi-modal data**, with a focus on applications in **ML** and **Neural Search**. +## Install the alpha + +to try out the alpha you can install it via git: +```shell +pip install git+https://github.com/docarray/docarray@alphav2-0.1 +``` +or from the latest development branch +```shell +pip install git+https://github.com/docarray/docarray@feat-rewrite-v2 +``` + This means that DocArray lets you do the following things: ## Represent From 610232d0c9c5127643b24cfa45318a3646a74801 Mon Sep 17 00:00:00 2001 From: Sami Jaghouar Date: Tue, 29 Nov 2022 15:08:51 +0100 Subject: [PATCH 2/2] chore: update for release Signed-off-by: Sami Jaghouar --- README.md | 22 +++++++++++----------- pyproject.toml | 4 ++-- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 22f09e63857..7f9e71e432d 100644 --- a/README.md +++ b/README.md @@ -9,17 +9,6 @@ see [here](https://github.com/docarray/docarray)._ DocArray is a library for **representing, sending and storing multi-modal data**, with a focus on applications in **ML** and **Neural Search**. -## Install the alpha - -to try out the alpha you can install it via git: -```shell -pip install git+https://github.com/docarray/docarray@alphav2-0.1 -``` -or from the latest development branch -```shell -pip install git+https://github.com/docarray/docarray@feat-rewrite-v2 -``` - This means that DocArray lets you do the following things: ## Represent @@ -260,6 +249,17 @@ match = store.find( match = store.find(Image(embedding=np.zeros((128,))), field='text__embedding', top_k=10) ``` +## Install the alpha + +to try out the alpha you can install it via git: +```shell +pip install "git+https://github.com/docarray/docarra@alphav2-0.1#egg=docarray[common,torch,image]" +``` +or from the latest development branch +```shell +pip install "git+https://github.com/docarray/docarray@feat-rewrite-v2#egg=docarray[common,torch,image]" +``` + ## Further reading - [V2 announcement blog post](https://github.com/docarray/notes/blob/main/blog/01-announcement.md) diff --git a/pyproject.toml b/pyproject.toml index d793391a944..9021cafbd7b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,8 @@ [tool.poetry] name = "docarray" -version = '0.1.0' +version = '2022.11.29.alpha' description='The data structure for unstructured data' -authors=['Jina AI'] +authors=['DocArray'] license='Apache 2.0' [tool.poetry.dependencies]