Difference between revisions of "Weaviate"

From BITPlan Wiki
Jump to navigation Jump to search
m (pushed from http://rq.bitplan.com)
Line 3: Line 3:
 
* https://www.semi.technology/news/fosdem-2020.html
 
* https://www.semi.technology/news/fosdem-2020.html
 
* https://www.semi.technology/documentation/weaviate/current/about/philosophy.html#about-the-contextionary
 
* https://www.semi.technology/documentation/weaviate/current/about/philosophy.html#about-the-contextionary
* Word2vec
+
* {{Link|target=Word2vec}}
* BERT
+
* {{Link|target=BERT}}
* GloVE
+
* {{Link|target=GloVe}}
  
 
Fill with dictionary "e.g. english".
 
Fill with dictionary "e.g. english".
 +
 +
* https://stackoverflow.com/questions/27652335/semantic-search-engines/60361878#60361878
 +
* https://www.semi.technology/news/fosdem-2020.html
 +
* https://en.wikipedia.org/wiki/Bob_van_Luijt
 +
* [http://playground.semi.technology/?weaviate_uri=https%3A%2F%2Fdemo.dataset.playground.semi.technology%2Fv1%2Fgraphql&gqlquery=%7B%0D%0A++Get%7B%0D%0A++++Things%7B%0D%0A++++++Publication%28%0D%0A++++++++explore%3A+%7B%0D%0A++++++++++concepts%3A+%5B%22fashion%22%5D%2C%0D%0A++++++++++certainty%3A+0.7%2C%0D%0A++++++++++moveAwayFrom%3A+%7B%0D%0A++++++++++++concepts%3A+%5B%22finance%22%5D%2C%0D%0A++++++++++++force%3A+0.45%0D%0A++++++++++%7D%2C%0D%0A++++++++++moveTo%3A+%7B%0D%0A++++++++++++concepts%3A+%5B%22haute+couture%22%5D%2C%0D%0A++++++++++++force%3A+0.85%0D%0A++++++++++%7D%0D%0A++++++++%7D%0D%0A++++++%29%7B%0D%0A++++++++name%0D%0A++++++%7D%0D%0A++++%7D%0D%0A++%7D%0D%0A%7D&graphiql Weaviate playground]
 +
* https://www.semi.technology/documentation/weaviate/current/about/philosophy.html#about-the-contextionary
 +
 +
* https://nlp.stanford.edu/pubs/glove.pdf
 +
* http://wiki.bitplan.com/index.php/Weaviate
 +
* https://hackernoon.com/how-weaviates-graphql-api-was-designed-t93932tl
 +
= Installation =
 +
== Docker ==
 +
=== Prerequisites ===
 +
<source lang='bash'>
 +
sudo apt-get install curl docker docker-compose
 +
</source>
 +
 +
=== Installweaviate ===
 +
<source lang='bash'>
 +
# Weaviate with an English Contextionary
 +
# Download the Weaviate configuration file
 +
curl -O https://raw.githubusercontent.com/semi-technologies/weaviate/0.22.14/docker-compose/runtime/en/config.yaml
 +
# Download the Weaviate docker-compose file
 +
curl -O https://raw.githubusercontent.com/semi-technologies/weaviate/0.22.14/docker-compose/runtime/en/docker-compose.yml
 +
# Run Docker Compose
 +
docker-compose up
 +
</source>
 +
== Installation Issue ==
 +
* https://github.com/semi-technologies/weaviate/issues/1215
 +
== Python Library ==
 +
* https://www.semi.technology/documentation/weaviate/current/client-libs/python.html
 
[[Category:SiGNaL]]
 
[[Category:SiGNaL]]

Revision as of 16:03, 24 July 2020

see

Fill with dictionary "e.g. english".

Installation

Docker

Prerequisites

sudo apt-get install curl docker docker-compose

Installweaviate

# Weaviate with an English Contextionary
# Download the Weaviate configuration file
curl -O https://raw.githubusercontent.com/semi-technologies/weaviate/0.22.14/docker-compose/runtime/en/config.yaml
# Download the Weaviate docker-compose file
curl -O https://raw.githubusercontent.com/semi-technologies/weaviate/0.22.14/docker-compose/runtime/en/docker-compose.yml
# Run Docker Compose
docker-compose up

Installation Issue

Python Library