Pash1986 commited on
Commit
6ad3446
1 Parent(s): 71cc009

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +116 -0
README.md ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ tags:
6
+ - movies
7
+ ---
8
+
9
+ ## sample_mflix.embedded_movies
10
+
11
+ This data set contains details on movies with genres of Western, Action, or Fantasy. Each document contains a single movie, and information such as its title, release year, and cast.
12
+
13
+ In addition, documents in this collection include a plot_embedding field that contains embeddings created using OpenAI's text-embedding-ada-002 embedding model that you can use with the Atlas Search vector search feature.
14
+
15
+ ### Sample Document
16
+ ```
17
+ {
18
+ "_id": {
19
+ "$oid": "573a1396f29313caabce582d"
20
+ },
21
+ "plot": "A young swordsman comes to Paris and faces villains, romance, adventure and intrigue with three Musketeer friends.",
22
+ "genres": ["Action", "Adventure", "Comedy"],
23
+ "runtime": {
24
+ "$numberInt": "106"
25
+ },
26
+ "rated": "PG",
27
+ "cast": ["Oliver Reed", "Raquel Welch", "Richard Chamberlain", "Michael York"],
28
+ "num_mflix_comments": {
29
+ "$numberInt": "0"
30
+ },
31
+ "poster": "https://m.media-amazon.com/images/M/MV5BODQwNmI0MDctYzA5Yy00NmJkLWIxNGMtYzgyMDBjMTU0N2IyXkEyXkFqcGdeQXVyMjI4MjA5MzA@._V1_SY1000_SX677_AL_.jpg",
32
+ "title": "The Three Musketeers",
33
+ "lastupdated": "2015-09-16 06:21:07.210000000",
34
+ "languages": ["English"],
35
+ "released": {
36
+ "$date": {
37
+ "$numberLong": "133747200000"
38
+ }
39
+ },
40
+ "directors": ["Richard Lester"],
41
+ "writers": ["George MacDonald Fraser (screenplay)", "Alexandre Dumas père (novel)"],
42
+ "awards": {
43
+ "wins": {
44
+ "$numberInt": "4"
45
+ },
46
+ "nominations": {
47
+ "$numberInt": "7"
48
+ },
49
+ "text": "Won 1 Golden Globe. Another 3 wins & 7 nominations."
50
+ },
51
+ "year": {
52
+ "$numberInt": "1973"
53
+ },
54
+ "imdb": {
55
+ "rating": {
56
+ "$numberDouble": "7.3"
57
+ },
58
+ "votes": {
59
+ "$numberInt": "11502"
60
+ },
61
+ "id": {
62
+ "$numberInt": "72281"
63
+ }
64
+ },
65
+ "countries": ["Spain", "USA", "Panama", "UK"],
66
+ "type": "movie",
67
+ "tomatoes": {
68
+ "viewer": {
69
+ "rating": {
70
+ "$numberDouble": "3.5"
71
+ },
72
+ "numReviews": {
73
+ "$numberInt": "9600"
74
+ },
75
+ "meter": {
76
+ "$numberInt": "78"
77
+ }
78
+ },
79
+ "dvd": {
80
+ "$date": {
81
+ "$numberLong": "982022400000"
82
+ }
83
+ },
84
+ "critic": {
85
+ "rating": {
86
+ "$numberDouble": "7.1"
87
+ },
88
+ "numReviews": {
89
+ "$numberInt": "11"
90
+ },
91
+ "meter": {
92
+ "$numberInt": "82"
93
+ }
94
+ },
95
+ "lastUpdated": {
96
+ "$date": {
97
+ "$numberLong": "1441307415000"
98
+ }
99
+ },
100
+ "rotten": {
101
+ "$numberInt": "2"
102
+ },
103
+ "production": "Live Home Video",
104
+ "fresh": {
105
+ "$numberInt": "9"
106
+ }
107
+ },
108
+ "plot_embedding": [
109
+ -0.004237316,
110
+ -0.022958077,
111
+ -0.005921211,
112
+ -0.020323543,
113
+ 0.010051459
114
+ ]
115
+ }
116
+ ```