davidmezzetti
commited on
Commit
•
5d249c9
1
Parent(s):
f36c4ac
Update README
Browse files
README.md
CHANGED
@@ -32,23 +32,25 @@ embeddings.search("Survey of vector databases")
|
|
32 |
|
33 |
# Search for papers matching an abstract
|
34 |
embeddings.search("""
|
35 |
-
Mixtral 8x7B, a Sparse Mixture of Experts (SMoE) language model. Mixtral
|
36 |
-
same architecture as Mistral 7B, with the difference that each
|
37 |
-
of 8 feedforward blocks (i.e. experts). For every
|
38 |
-
network selects two experts to process
|
|
|
39 |
""")
|
40 |
|
41 |
embeddings.search("""
|
42 |
-
Humanity has wondered whether we are alone for millennia. The discovery
|
43 |
-
elsewhere in the Universe, particularly intelligent life, would
|
44 |
-
comparable to those of recognizing that the Earth
|
45 |
-
and that humans evolved from previous
|
|
|
46 |
""")
|
47 |
|
48 |
embeddings.search("""
|
49 |
-
The main objective of this paper is to investigate the extent to which
|
50 |
-
victory can be predicted solely by the rankings of the
|
51 |
-
Division I men's basketball games.
|
52 |
""")
|
53 |
```
|
54 |
|
|
|
32 |
|
33 |
# Search for papers matching an abstract
|
34 |
embeddings.search("""
|
35 |
+
Mixtral 8x7B, a Sparse Mixture of Experts (SMoE) language model. Mixtral
|
36 |
+
has the same architecture as Mistral 7B, with the difference that each
|
37 |
+
layer is composed of 8 feedforward blocks (i.e. experts). For every
|
38 |
+
token, at each layer, a router network selects two experts to process
|
39 |
+
the current state and combine their outputs.
|
40 |
""")
|
41 |
|
42 |
embeddings.search("""
|
43 |
+
Humanity has wondered whether we are alone for millennia. The discovery
|
44 |
+
of life elsewhere in the Universe, particularly intelligent life, would
|
45 |
+
have profound effects, comparable to those of recognizing that the Earth
|
46 |
+
is not the center of the Universe and that humans evolved from previous
|
47 |
+
species.
|
48 |
""")
|
49 |
|
50 |
embeddings.search("""
|
51 |
+
The main objective of this paper is to investigate the extent to which
|
52 |
+
the margin of victory can be predicted solely by the rankings of the
|
53 |
+
opposing teams in NCAA Division I men's basketball games.
|
54 |
""")
|
55 |
```
|
56 |
|