Skip to content

libs/astradb/v0.4.0

Compare
Choose a tag to compare
@github-actions github-actions released this 09 Sep 22:23
· 26 commits to main since this release
2e66453

What's Changed

Full Changelog: libs/astradb/v0.3.5...libs/astradb/v0.4.0

Vector Store "autodetect mode". A short guide

Summary

The newly-introduced "autodetect" mode for the Astra DB Vector Store assumes
a collection exists already, possibly populated by external means with vector
documents of some (uniform) shape.

Upon initialization, the vector store class figures out the collection and
"schema" settings and works seamlessly on it.

Tested scenarios:

All the following have been tested to work with this init mode.
(See a section below for more extended details/instructions.)

  • "native" non-vectorize store (i.e. the usual store as this class has always produced)
  • "native" vectorize-based store (same)
  • non-vectorize collection with an imported CSV (Astra UI) containing embedding vectors
  • vectorize collection with an imported CSV (Astra UI) containing a "$vectorize" column
  • vectorize collection with an imported CSV (Astra UI) one of whose columns is marked as text-to-embed
  • vectorize collection with an ingested PDF file (Astra UI)

Note that the vector stores created through LangFlow fall in the first two cases,
if using the Astra DB Vector Store component
(e.g. when connecting a "Load from file" component to a Vector Store in LangFlow).

Usage tips

If you anticipate the collection to be populated by ingestion pipelines other than
the AstraDBVectorStore itself, you should assume that, when the latter component
initializes, the collection exists already. In this case, you can make use of the
autodetect mode.

Note: autodetect will fall back to "native" mode, also for back-compatibility, in these
cases: (1) empty collection, (2) collection populated with documents compliant with "native".

Typical usage

You can initialize the store with the autodetect_collection parameter like this:

store = AstraDBVectorStore(
    collection_name="my_collection",
    token=os.environ["ASTRA_DB_APPLICATION_TOKEN"],
    api_endpoint=os.environ["ASTRA_DB_API_ENDPOINT"],
    autodetect_collection=True,
)

Note that most other init parameters can also be passed (see below for details).

Additional parameters:

  • content_field: specifies what root-level field in the documents carry the textual content. Cannot be passed for vectorize collection, where it is fixed to $vectorize. For autodetect, it can also be passed as "*", meaning that the autodetect procedure should also guess it by looking at a handful of documents on the collection. For non-vectorize collections, defaults to "content".
  • ignore_invalid_documents: by default, malformed documents from the DB (e.g. missing metadata, missing textual content) trigger a runtime error. This flag sets a more permissive behaviour, by which bad documents are logged and ignored without compromising the working of the store. Keep in mind this is a post-filtering, so one may end up with a lower number of matches from a vector search.

(Note: both parameters can also be used outside of the autodetect mode -- except for "*" to the first one. Probably there are not many cases where this is useful, but there's nothing blocking you from passing them.)

Forbidden parameters:

The following parameters, pertaining to how the collection should be created, are not permitted
on autodetect: metric, setup_mode, metadata_indexing_include, metadata_indexing_exclude, collection_indexing_policy, collection_vector_service_options.

Tested scenarios, details

Here is a minimal script to try a basic similarity search with an autodetected store:

import os
import logging
logging.basicConfig(level=5)

from langchain_astradb import AstraDBVectorStore

ad_store = AstraDBVectorStore(
    collection_name=os.environ["AUTODETECT_COLLECTION_NAME"],
    token=os.environ["ASTRA_DB_APPLICATION_TOKEN"],
    api_endpoint=os.environ["ASTRA_DB_API_ENDPOINT"],
    autodetect_collection=True,
)


for doc, sco in ad_store.similarity_search_with_score(
    "Tell me so and so",
    k=2,
):
    print(f"\n\n{'=' * 80}")
    print(f"Score = {sco}")
    print(f"Page content = {doc.page_content}")

The following outlines the preparation steps preliminary to running the above
in the various tested cases.

"native" non-vectorize store

Simply use a regular vector store with client-side embeddings and have it add_texts(...)
with a handful of entries.

Afterwards, try the autodetect script above on the same collection (but see the following Note).

Note 1: in this case, you need to create the correct embedding, e.g.:

from langchain_openai import OpenAIEmbeddings
embedding = OpenAIEmbeddings(
    api_key=os.environ["OPENAI_API_KEY"],
    model="text-embedding-ada-002",
)

and then pass it as an additional argument (embedding=embedding) when creating ad_store in the script.

(Note 2: in this case, content_field should never be needed.)

"native" vectorize-based store

Use a regular vectorize-based vector store and have it add_texts(...) with some entries.

Afterwards, try the autodetect script above on the same collection.

non-vectorize with imported CSV

You can create a Collection in the Astra UI with "Bring your own embedding", setting
the desired dimensionality, and then import a CSV with a "$vector" field into it.

An example CSV is as follows (requires a dimension of 1536):

title,reviewid,creationdate,criticname,originalscore,reviewstate,reviewtext,embedding
Beavers,1145982,2003-05-23,Ivan M. Lincoln,3.5/4,fresh,"Timed to be just long enough for most youngsters' brief attention spans -- and it's packed with plenty of interesting activity, both on land and under the water.","[-0.007622489705681801, 0.005060779396444559, 0.02063874900341034, -0.007668646518141031, -0.029461318626999855, 0.013121760450303555, -0.02066512405872345, -0.028063422068953514, -0.013530578464269638, -0.019385917112231255, -0.0017160492716357112, 0.038217950612306595, -0.0042167664505541325, -0.009692958556115627, 0.011486485600471497, -0.00171934615354985, 0.025531385093927383, -0.016128554940223694, 0.004793728236109018, -0.0242785532027483, -0.00812362227588892, 0.010451250709593296, 0.006785070989280939, -0.007695022039115429, -0.011202950030565262, 0.003709040116518736, 0.006274047773331404, -0.008407157845795155, 0.005575099494308233, -0.004233251325786114, 0.02990970015525818, -0.011156792752444744, 0.005911386106163263, -0.013781145215034485, 0.001370696467347443, 0.002546874340623617, 0.002978771459311247, 0.0009676473564468324, 0.009785272181034088, 0.004229954443871975, -0.001103645539842546, 0.006640006322413683, -0.0030611944384872913, -0.013530578464269638, 0.001376466010697186, -0.021430009976029396, 0.007879650220274925, -0.00583225954324007, -0.01449328102171421, 0.004183797165751457, 0.005904791876673698, -0.01583842560648918, 0.005782805848866701, -0.032098859548568726, -0.006171843037009239, -0.012198621407151222, -0.001701213070191443, -0.016563748940825462, 0.015996677801012993, -0.015416420064866543, 0.00233751954510808, -0.0015882934676483274, -0.0015141126932576299, 0.008815976791083813, -0.003646398661658168, -0.003705743234604597, 0.0020754141733050346, 0.0054597072303295135, 0.01279866136610508, -0.005674007348716259, 0.015363669022917747, 0.002830409910529852, 0.03217798471450806, 0.004286001902073622, 0.028142549097537994, -0.010022650472819805, -0.007760960608720779, 0.00789283774793148, 0.014849348925054073, 0.02203664369881153, 0.011288669891655445, -0.032046105712652206, -0.02753591537475586, 0.026718277484178543, 0.011202950030565262, 0.013939397409558296, 0.0020325540099292994, 0.014559219591319561, -0.011268888600170612, -0.001387180993333459, -0.0011539235711097717, 0.01931997761130333, 0.017262697219848633, 0.017856143414974213, 0.002866676077246666, -0.0018627623794600368, -0.01368883065879345, 0.02877555787563324, -0.025795137509703636, -0.035659536719322205, -0.0026523759588599205, 0.012198621407151222, 0.023421352729201317, -0.005031106993556023, -0.023368602618575096, -0.016695626080036163, 0.015521921217441559, -0.0031930715776979923, 0.033233001828193665, 0.010451250709593296, -0.030331706628203392, 0.02645452320575714, 0.006649896968156099, -0.03500015288591385, -0.0218256413936615, 0.008611567318439484, 0.0068773846141994, 0.007325766608119011, 0.016286807134747505, -0.007695022039115429, 0.020902501419186592, 0.0068773846141994, 0.0017490185564383864, -0.01345804613083601, 0.00196331855840981, 0.011189762502908707, -0.01616811752319336, -0.011618362739682198, 0.00902698002755642, -0.016550561413168907, 0.012614034116268158, -0.004454145208001137, 0.0029639352578669786, -0.002774361986666918, -0.04465354606509209, 0.0008196978596970439, -0.010358937084674835, -0.011479891836643219, -0.02691609226167202, -0.006745507940649986, 0.02050687186419964, 0.029144814237952232, -0.02268284186720848, -0.015521921217441559, 0.002256745006889105, -0.00013723448500968516, -0.00580588448792696, 0.01190849207341671, -0.011394171975553036, 0.012699753977358341, 0.019254039973020554, -0.01831771247088909, 0.005284970160573721, 0.028168924152851105, -0.011473298072814941, 0.024067549034953117, -0.0012000806163996458, 0.010167715139687061, -0.02640177309513092, -0.012666784226894379, 0.0125283133238554, 0.006396033801138401, 0.032072484493255615, -0.016629688441753387, 0.033180247992277145, 0.01738138683140278, 0.019768361002206802, -0.0033282453659921885, 0.03368138149380684, 0.00030084437457844615, -0.010899633169174194, 0.018436402082443237, -0.03273186832666397, 0.011743645183742046, -0.013029445894062519, 0.013016258366405964, 0.014915287494659424, 0.005627850536257029, 0.012699753977358341, -0.03626617044210434, 0.009910555556416512, -0.01999255083501339, 0.011242512613534927, 0.00724004628136754, -0.016537373885512352, 0.0012923944741487503, 0.01495485007762909, 0.012515125796198845, 0.004846479278057814, -0.005245407111942768, 0.012192027643322945, 0.030832840129733086, -0.027931544929742813, 0.02782604470849037, -0.6777421832084656, 0.01256787683814764, 0.0002443845442030579, -0.034393519163131714, 0.020862938836216927, 0.0020787110552191734, -0.007906025275588036, -0.004853073041886091, 0.018357276916503906, 0.017750641331076622, -0.0037222278770059347, 0.009020386263728142, 0.015297730453312397, -0.015851613134145737, -0.008545628748834133, 0.0005955070373602211, -0.0008497823146171868, -0.02174651436507702, -0.006864197086542845, 0.020651936531066895, -0.03489464893937111, 0.01686706580221653, -0.010998540557920933, 0.014203151687979698, 0.01966285891830921, 0.016748378053307533, -0.012752504087984562, -0.029382191598415375, -0.020572809502482414, 0.008341219276189804, -0.006949916947633028, -0.007820305414497852, 0.0055553182028234005, 0.013807520270347595, 0.04425791651010513, -0.027298536151647568, -0.010741380043327808, 0.04256989061832428, 0.003939825110137463, 0.02446318045258522, -0.04045986011624336, 0.012759098783135414, 0.026718277484178543, -0.003290330758318305, 0.01442734245210886, -0.006521316710859537, 0.039563097059726715, 0.0071477326564490795, 0.011835959739983082, -0.025531385093927383, 0.022049831226468086, -0.001511639915406704, 0.01030618604272604, -0.010715004988014698, -0.0067422110587358475, -0.016656063497066498, -0.006857603322714567, 0.0014926826115697622, -0.009699552319943905, 0.0026111642364412546, -0.022801531478762627, 0.026441335678100586, -0.004279408138245344, -0.004727790132164955, -0.021403634920716286, 0.030463583767414093, -0.013649268075823784, 0.019517794251441956, 0.00907973013818264, -0.026335833594202995, -0.0020737654995173216, 0.029329441487789154, -0.013781145215034485, -0.0008353582816198468, 0.007154326420277357, 0.006785070989280939, 0.03223073482513428, -0.012831631116569042, -0.01764514110982418, -0.004549756180495024, 0.02268284186720848, 0.004708008375018835, -0.00035297698923386633, 0.005258594639599323, 0.03655629977583885, -0.01279866136610508, -0.010141340084373951, 0.006392736919224262, 0.007767554372549057, -0.028274426236748695, 0.016722001135349274, 0.01570654846727848, -0.013022852130234241, -0.00935007818043232, -0.016471436247229576, -0.008855539374053478, 0.00578610273078084, 0.015930740162730217, 0.033101122826337814, -0.04977037385106087, -0.006524614058434963, 0.010213872417807579, 0.002776010660454631, -0.022907031700015068, -0.001228104461915791, -0.004661851562559605, -0.0004442606004886329, 0.003936528228223324, 0.011460109613835812, -0.0151131022721529, 0.016616500914096832, 0.0017671516397967935, -0.029065687209367752, -0.006785070989280939, -0.025610510259866714, -0.02616439387202263, 0.009633613750338554, 4.932508454658091e-05, 0.019108975306153297, -0.016075804829597473, 0.0038574018981307745, 0.0028963482473045588, 0.008697287179529667, -0.00628393841907382, -0.01326682511717081, 0.010853475891053677, 0.015508733689785004, -0.005420144181698561, -0.01170408260077238, -0.01640549674630165, 0.00226993253454566, 0.011605174280703068, 0.016062617301940918, -0.015073539689183235, 0.012607439421117306, 0.04143574833869934, 0.016748378053307533, -0.010569940321147442, 0.015957115218043327, -0.02055962197482586, -0.012159057892858982, 0.009172044694423676, 0.0016344503965228796, -0.034499019384384155, -0.004566240590065718, -0.04127749800682068, -0.017249509692192078, 0.00022707568132318556, -0.039536722004413605, -0.01573292352259159, 0.002225424163043499, -0.007906025275588036, -0.01030618604272604, 0.0062641566619277, -0.015851613134145737, 0.005552021320909262, -0.0009379750699736178, -0.014335027895867825, -0.006000402849167585, -0.01306900940835476, 0.023579604923725128, -0.006636709440499544, -0.028089797124266624, -0.002413348760455847, -0.003005146747455001, 0.02079700119793415, -0.016062617301940918, 0.010846882127225399, 0.0015544999623671174, -0.020190365612506866, -0.008802788332104683, -0.007642271462827921, -0.004968465305864811, 0.022696029394865036, -0.00998308788985014, 0.010332562029361725, -0.04238526150584221, -0.00782689917832613, -0.019847486168146133, -0.015719735994935036, 0.0014770221896469593, -0.009528112597763538, -0.014005335979163647, -0.03407701477408409, 0.0019385917112231255, -0.0026111642364412546, 0.024845624342560768, 0.03769044205546379, -0.027245786041021347, 0.03660904988646507, 0.054597072303295135, 0.02048049494624138, -0.021113505586981773, -0.008677505888044834, -0.002987013664096594, -0.0061619519256055355, -0.017922082915902138, -0.0008135161479003727, 0.028195299208164215, 0.0364244244992733, 0.019333167001605034, -0.009237983264029026, 0.009989681653678417, 0.010108371265232563, -0.0020787110552191734, -0.018330901861190796, -0.003610132494941354, -0.02425217814743519, 0.024660997092723846, 0.03283736854791641, 0.019412292167544365, -0.008295061998069286, -0.03291649743914604, 0.010780943557620049, 0.004091483540832996, 0.0023127926979213953, 0.009475361555814743, -0.005904791876673698, -0.023540042340755463, 0.01616811752319336, 0.037031058222055435, -0.03502652794122696, -0.003412317018955946, -0.003488146234303713, -0.020058490335941315, 0.005588287487626076, 0.005064076278358698, 0.01502078864723444, -0.005406956188380718, -0.012587658129632473, -0.008941259235143661, 0.0010171012254431844, -0.012053556740283966, 0.017948457971215248, -0.007134545128792524, 0.00825549941509962, 0.003873886540532112, -0.011882116086781025, 0.005634444300085306, 0.03787507116794586, 0.03157135099172592, 0.022761967033147812, 0.007820305414497852, -0.01432184036821127, 0.03159772604703903, -0.00209849257953465, 0.04394141212105751, -0.0047541651874780655, -0.022366337478160858, -0.01286459993571043, -0.01561423484236002, -0.0013822356704622507, -0.03882458433508873, 0.022274022921919823, 0.003511224640533328, 0.0018034178065136075, 0.018436402082443237, -0.008842351846396923, -0.0037024463526904583, 0.03012070432305336, -0.016656063497066498, 0.02214214578270912, -0.005565208848565817, -0.0019781547598540783, 0.019952988252043724, -0.02435767836868763, 0.0017292369157075882, -0.015363669022917747, 0.003643101779744029, -0.00375519716180861, 0.01508672721683979, 0.005228922702372074, 0.0011489782482385635, -0.03146584704518318, -0.003123836126178503, -0.018462777137756348, -0.007622489705681801, -0.015258166939020157, -0.0167879406362772, 0.012086525559425354, 0.016036242246627808, -0.03534303233027458, 0.011644737794995308, 0.023052096366882324, -0.0041046710684895515, -0.021271757781505585, -0.019834298640489578, -0.003943121992051601, -0.023882921785116196, 0.009046761319041252, -0.009501736611127853, -0.012396436184644699, 0.0034716615919023752, 0.010471032932400703, -0.002897996688261628, -0.0011844201944768429, 0.024806061759591103, -0.008677505888044834, -0.01250193826854229, -0.02084975130856037, -0.009508330374956131, 0.006010293494910002, -0.0015413123182952404, -0.019385917112231255, 0.008110434748232365, 0.006732319947332144, -0.014875723980367184, -0.01896391063928604, -0.003603538731113076, 0.003705743234604597, 0.0011456813663244247, -0.011783208698034286, -0.0028271127957850695, -0.01684069074690342, -0.016880253329873085, -0.002113328780978918, -0.003995872568339109, -0.019254039973020554, -0.0017984723672270775, -0.010365530848503113, -0.007563144899904728, -0.004318971186876297, -0.01805396005511284, -0.004190391395241022, 0.10365530848503113, -0.0029721774626523256, 0.01246237475425005, 0.02653365023434162, 0.008321437984704971, -0.02265646681189537, -0.024555495008826256, -0.0013369029620662332, 0.019227664917707443, -0.007365329656749964, -0.002708423649892211, -0.0020078271627426147, 0.008453315123915672, 0.007615895941853523, -0.00519265653565526, 0.004671742208302021, -0.0021001410204917192, -0.014691095799207687, 0.01124910730868578, -0.0016534077003598213, 0.015561484731733799, 0.018792470917105675, 0.018766095861792564, 0.03130759671330452, 0.009541300125420094, -0.013913022354245186, 0.008539034985005856, 0.0268633421510458, 0.012627221643924713, -0.0033793477341532707, -0.0026424850802868605, -0.008730255998671055, 0.0012042017187923193, 0.0036892585922032595, 0.002319386461749673, 0.002830409910529852, 0.0005353381275199354, 0.010741380043327808, 0.022867469117045403, -0.0026095157954841852, 0.02198389358818531, 0.008967635221779346, 0.007708210032433271, -0.008736850693821907, 0.008374189026653767, -0.005317939445376396, -0.0004994840710423887, 0.040802739560604095, -0.005881713703274727, -0.023025721311569214, 0.044442545622587204, 0.005077263806015253, -0.009086323902010918, 0.0036892585922032595, 0.005743242800235748, -0.002792495070025325, 0.00016340383444912732, 0.012521719560027122, 0.010899633169174194, -0.02882830984890461, -0.005278376396745443, -0.008506065234541893, -0.0023045502603054047, -0.0010352343088015914, -0.0017259400337934494, -0.02278834395110607, -0.02495112642645836, 0.0053278300911188126, -0.019095787778496742, -0.008994010277092457, -0.00905335508286953, -0.005146499257534742, -0.025940202176570892, -0.004342049825936556, 0.028406303375959396, 0.007055418565869331, 0.017394574359059334, 0.0018446292961016297, -0.002726556733250618, 0.021219007670879364, 0.02888105995953083, -0.0010616097133606672, -0.025425883010029793, -0.017328636720776558, 0.014440529979765415, 0.026652337983250618, 0.001755612320266664, 0.020058490335941315, 0.0005753133445978165, 0.019412292167544365, 0.012554689310491085, 0.023025721311569214, 0.017236322164535522, -0.0047541651874780655, -0.014915287494659424, 0.005120123736560345, 0.0018347385339438915, 0.018040772527456284, -0.004912417847663164, 0.000898411963135004, 0.009772084653377533, -0.021575074642896652, -0.011671112850308418, 0.009791865944862366, 0.014888911508023739, -0.0033233000431209803, -0.025953391566872597, 0.00932370312511921, 0.0044211759231984615, -0.009363265708088875, -0.003560678567737341, -0.012429405935108662, -0.002744689816609025, 0.015521921217441559, -0.005258594639599323, -0.0003533890994731337, 0.010339155793190002, 0.01306900940835476, 0.004022248089313507, 0.000895939243491739, -0.005499270278960466, -0.021614637225866318, 0.006729023065418005, 0.00644548749551177, -0.0017407762352377176, 0.019979363307356834, 0.01200080569833517, -0.025966579094529152, -0.011361202225089073, 0.022023456171154976, -0.0022138848435133696, 0.004414582159370184, -0.004836588632315397, -0.0056080687791109085, -0.02567644976079464, -0.00137893867213279, -0.018462777137756348, 0.012284341268241405, -0.0029441537335515022, -0.013022852130234241, -0.01213927660137415, 0.02149594947695732, 0.01939910463988781, -0.01581205055117607, 0.00805768370628357, -0.02117944322526455, -0.008954447694122791, -0.014677908271551132, 0.008842351846396923, 0.016959380358457565, -0.015179040841758251, 0.0028600820805877447, -0.0033892386127263308, 0.006771882995963097, 0.009567675180733204, -0.015508733689785004, -0.02743041329085827, -0.01277228631079197, 0.03365500643849373, 0.012323903851211071, 0.029092062264680862, 0.0002145061589544639, -0.0014778465265408158, 0.013609704561531544, 0.016576936468482018, -0.0022188301663845778, 0.009765490889549255, -0.02120582014322281, -0.022854281589388847, -0.004477223847061396, 0.023645544424653053, -0.0052190315909683704, 9.190177661366761e-05, -0.03674092888832092, 0.0035771632101386786, 0.013240449130535126, 0.006735616829246283, -0.008103840984404087, -0.01813308522105217, -0.012152464129030704, 0.00941601675003767, 0.01561423484236002, -0.0038870740681886673, 0.004454145208001137, -0.011143605224788189, -0.008295061998069286, 0.034367144107818604, 0.014822972938418388, -0.009627019986510277, -0.0003643101663328707, 0.01996617577970028, -0.0170516949146986, 0.013622893020510674, -0.005617959424853325, 0.0057399459183216095, 0.006804852280765772, 0.008776413276791573, -0.03898283839225769, -0.008881915360689163, 0.008585191331803799, 0.026032516732811928, -0.017579201608896255, -0.005215734709054232, 0.005650928709656, -0.004454145208001137, -0.0037387125194072723, -0.01673518866300583, -2.9826864192727953e-05, -0.015390044078230858, -0.010180903598666191, 0.004045326728373766, -0.00935007818043232, -0.01127548236399889, -0.03600241616368294, 0.024858811870217323, 0.0041969851590693, -0.010774349793791771, 0.010569940321147442, -0.017856143414974213, -0.012455780990421772, 0.009699552319943905, -0.0009412720100954175, 0.028274426236748695, -0.001033585867844522, 0.020243117585778236, 0.015139478258788586, 0.01829133741557598, -0.014862536452710629, 0.00791921280324459, 0.0047739469446241856, -0.004249735735356808, 0.020836563780903816, 0.010154527612030506, 0.006804852280765772, -0.0003505042986944318, -0.00968636479228735, 0.008235718123614788, -0.017064882442355156, -0.02017717808485031, -0.002004530280828476, -0.0012783824931830168, 0.007292797323316336, -0.02066512405872345, -0.005594881251454353, -0.01504716370254755, 0.017842955887317657, -0.02141682244837284, -0.007451049517840147, 0.0037255247589200735, 0.006231187377125025, -0.015390044078230858, 0.018515529111027718, -0.030252579599618912, 0.00981824193149805, 0.02198389358818531, 0.0055124578066170216, -0.009475361555814743, 0.01996617577970028, -0.004454145208001137, -0.018818845972418785, 0.006300422828644514, 0.023751044645905495, -0.0008662669570185244, 0.01802758313715458, 0.013187699019908905, 0.012653596699237823, 0.014968037605285645, -0.011427140794694424, -0.004942090250551701, 0.025636885315179825, -0.015746112912893295, -0.024318115785717964, -0.007635677233338356, 0.02990970015525818, -0.011631550267338753, -0.01213927660137415, -0.009758897125720978, -0.006765289232134819, -0.011578799225389957, -0.002916129771620035, 0.024502743035554886, -0.0005472894990816712, 0.01589117757976055, -0.03871908411383629, -0.0019435370340943336, -0.01259425189346075, -0.005548723973333836, -0.02141682244837284, -0.0122052151709795, -0.020678311586380005, -0.009422610513865948, -0.001586645026691258, 0.009699552319943905, -0.00408159289509058, 0.014862536452710629, -0.01213927660137415, 0.006923541892319918, 0.026797402650117874, -0.013372326269745827, 0.008967635221779346, 0.003959606401622295, 0.022326773032546043, -0.025478633120656013, 0.014466905035078526, 0.003204610664397478, -0.024344490841031075, 0.015521921217441559, -0.014137213118374348, -0.013636080548167229, -0.0016245596343651414, 0.01370201911777258, 0.01945185475051403, -0.039642222225666046, -0.00022748780611436814, 0.0016682439018040895, -0.012455780990421772, -0.004714602138847113, -0.010121558792889118, -0.040802739560604095, 0.01800120808184147, 0.01583842560648918, -0.0027545804623514414, 0.03645079955458641, 0.010121558792889118, 0.010998540557920933, -0.02327628806233406, -0.00017813696467783302, -0.00537398736923933, -0.04019610583782196, 0.016669251024723053, -0.039589472115039825, 0.0031699929386377335, -0.006722429301589727, -0.017315447330474854, -0.018792470917105675, -0.0066993506625294685, -0.017130820080637932, 0.019610106945037842, -0.009791865944862366, 0.007404892705380917, 0.03244173899292946, 0.026520462706685066, 0.016576936468482018, 0.00011570144852157682, 0.01699894294142723, 0.019491419196128845, 0.016471436247229576, -0.0050344038754701614, -0.03893008455634117, -0.006508129183202982, 0.014269090257585049, 0.04998137801885605, 0.04135662317276001, -0.03154497593641281, -0.024423617869615555, 0.0016715407837182283, -0.0249247495085001, 0.005416847299784422, 0.003293627640232444, 0.0300943274050951, 0.019043035805225372, 0.010273217223584652, 0.015693360939621925, 0.04789772257208824, -0.024647807702422142, 0.02133769541978836, -0.008796194568276405, -0.012376654893159866, 0.0030496553517878056, 0.008479690179228783, -0.00043436980922706425, 0.0011654628906399012, -0.023474102839827538, -0.025610510259866714, 0.026744652539491653, 0.00945558026432991, -0.02071787416934967, 0.014796597883105278, -0.00590149499475956, -0.0037222278770059347, -0.011981024406850338, 0.014546031132340431, 0.023671919479966164, -0.002550171222537756, -0.008591786026954651, -0.02373785711824894, -0.0169198177754879, -0.0035903509706258774, -0.012871193699538708, -0.010325968265533447, -0.01209971308708191, -0.019794736057519913, -0.0025172019377350807, 0.017447324469685555, -0.009811648167669773, -0.017117632552981377, 0.0003482376632746309, -0.025425883010029793, 0.015864800661802292, -0.005080560687929392, 0.009679771028459072, 0.019043035805225372, 0.021654201671481133, -0.033180247992277145, -0.024713747203350067, 0.0009783623972907662, -0.029540445655584335, -0.009976494126021862, 0.0009289085282944143, -0.0049025267362594604, 0.011453515850007534, -0.013899833895266056, 0.0057036797516047955, -0.008426939137279987, -0.025294005870819092, 0.0019221070688217878, -0.0042002820409834385, -0.001805066247470677, 0.027272161096334457, 0.010530377738177776, 0.00014176775584928691, 0.00426292372867465, 0.012521719560027122, 0.0003838856646325439, 0.003962903283536434, -0.00551575468853116, -0.004140937235206366, -0.013148135505616665, 0.019702421501278877, 0.012627221643924713, -0.005420144181698561, 0.005789399612694979, -0.010860069654881954, 0.013280012644827366, -0.021627824753522873, 0.014757034368813038, 0.23358051478862762, 0.007912619039416313, 0.009073136374354362, 0.0418577566742897, 0.005743242800235748, 0.004256329499185085, 0.035633161664009094, -0.0010978758800774813, 0.006837821565568447, -0.0017127523897215724, -0.0012371710035949945, 0.01859465427696705, -0.0004566240531858057, -0.005495973397046328, 0.00037172826705500484, -0.035685911774635315, -0.017183572053909302, -0.008202748373150826, -0.01966285891830921, -0.02495112642645836, -0.007451049517840147, -0.008677505888044834, -0.01670881360769272, -0.009165450930595398, 0.02613801881670952, -0.020163990557193756, -0.020955253392457962, -0.0008613215759396553, 0.010233653709292412, 0.029804198071360588, 0.017631953582167625, -0.015508733689785004, -0.0016781346639618278, 0.0035903509706258774, -0.019069412723183632, -0.008532441221177578, 0.01508672721683979, -0.008684099651873112, 0.015033976174890995, 0.03618704527616501, 0.0006585607188753784, 0.014915287494659424, 0.021219007670879364, -0.0013575087068602443, 0.008921477943658829, 0.013174510560929775, -0.007774148136377335, -0.006649896968156099, 0.00018854287918657064, 0.014071274548768997, -0.02400161139667034, -0.006382846273481846, 0.01797483302652836, 0.011130417697131634, -0.002685345010831952, 0.0005885010468773544, -0.007477425038814545, 0.0010632581543177366, 0.00851265899837017, -0.009547893889248371, 0.011282076127827168, 0.025333568453788757, -0.010800724849104881, 0.017223134636878967, -0.02583470195531845, 0.04478542506694794, -0.020322242751717567, 0.01864740625023842, 0.020005738362669945, -0.010629285126924515, -0.012871193699538708, -0.028353551402688026, -0.03223073482513428, 0.013662455603480339, -0.017658328637480736, -0.0242785532027483, 0.025953391566872597, 0.014506468549370766, 0.02430492825806141, 0.005083857569843531, -0.017829768359661102, -0.013029445894062519, -0.014084462076425552, -0.015258166939020157, 0.0067586954683065414, -0.026876529678702354, 0.013913022354245186, -0.006485050544142723, 0.004213469568639994, -0.0018067146884277463, 0.011862334795296192, -0.03674092888832092, -0.0035507879219949245, 0.011262294836342335, 0.015877988189458847, 0.011387577280402184, -0.011394171975553036, 0.02462143264710903, -0.005637741181999445, -0.0017490185564383864, -0.018357276916503906, -0.02526763081550598, 0.023315850645303726, -0.0011127120815217495, 0.0017506669973954558, -0.0009519869927316904, -0.008466502651572227, 0.028089797124266624, 0.010180903598666191, -0.013425077311694622, 0.0023259802255779505, -0.021456385031342506, 0.019596919417381287, -0.012152464129030704, -0.006544395349919796, 0.017803393304347992, 0.019082600250840187, -0.005617959424853325, 0.020269492641091347, 0.001918810186907649, -0.009158856235444546, -0.0250566266477108, -0.009369859471917152, 0.0063300952315330505, -0.01445371750742197, -0.02766779065132141, -0.026045704260468483, 0.007958776317536831, 0.005232219584286213, -0.026203956454992294, -0.002558413427323103, -0.011915085837244987, -0.0004240669368300587, -0.003768384922295809, -0.012396436184644699, -0.006234484724700451, 0.006069638300687075, -0.0031518598552793264, -0.0023754341527819633, 0.004328861832618713, 0.04409966245293617, -0.012422812171280384, 0.0031881260219961405, 0.014071274548768997, 0.0022006970830261707, -0.03014707937836647, 0.012370061129331589, 0.01953098177909851, -0.006590552162379026, -0.009910555556416512, -0.02559732273221016, 0.006158655043691397, -0.0005839677760377526, -0.007642271462827921, 0.025940202176570892, -0.02681059204041958, -0.025201691314578056, -0.018845221027731895, -0.026151206344366074, -0.006409221328794956, -0.021535512059926987, -0.008506065234541893, 0.018119897693395615, -0.00614876439794898, -0.008591786026954651, 0.010260029695928097, -0.16911904513835907, 0.009936930611729622, 0.006307017058134079, -0.013781145215034485, 0.014664720743894577, -0.01821221224963665, 0.04043348506093025, -0.0038541050162166357, -0.022959783673286438, -0.006260859780013561, 0.03114934451878071, 0.01277228631079197, -0.03861358016729355, -0.0014160291757434607, 0.008275280706584454, 0.001358332927338779, -0.0064257062040269375, 0.010589721612632275, 0.015350481495261192, -0.011829365976154804, 0.007167513947933912, -0.0029705290216952562, 0.014269090257585049, 0.014506468549370766, 0.01293053850531578, -0.0045167868956923485, -0.0011052939807996154, 0.012383248656988144, 0.031861480325460434, -0.007273015566170216, -0.0010484220692887902, -0.005528942681849003, -0.0010236951056867838, 0.0018347385339438915, -0.0031485629733651876, 0.0072796097956597805, -0.009059948846697807, 0.0013286606408655643, -0.013556954450905323, 0.0353957824409008, -0.009244577027857304, 0.009897368028759956, 0.016748378053307533, -0.00376508804038167, -0.010128152556717396, 0.021166255697607994, 0.0021298134233802557, -0.006870790850371122, 0.005660819821059704, -0.035765036940574646, 0.013899833895266056, -0.04162037745118141, -0.020942065864801407, -0.006260859780013561, 0.01558785978704691, 0.014625158160924911, -0.01163814403116703, 0.004009060561656952, 0.012192027643322945, 0.006982886232435703, -0.01808033511042595, -0.0004053156590089202, -0.006010293494910002, -0.01436140388250351, -0.01190849207341671, -0.04275451973080635, -0.006096013821661472, -0.009831429459154606, -0.017183572053909302, -0.0025089597329497337, 0.009791865944862366, -0.027905169874429703, 0.0033167062792927027, -0.009369859471917152, 0.006623521447181702, -0.0055718026123940945, -0.00017597335681784898, -0.005525645799934864, 0.024067549034953117, 0.02115306816995144, -0.003293627640232444, 0.04172587767243385, -0.02187839150428772, -0.004279408138245344, 0.010424875654280186, -0.007470831274986267, -0.04154125228524208, 0.007286203559488058, 0.0007587047875858843, 0.00013022852363064885, 0.012488750740885735, -0.029144814237952232, -0.005031106993556023, 0.004803619347512722, 0.013939397409558296, 0.024476367980241776, 0.011875522322952747, 0.005509160924702883, 0.004793728236109018, -0.006326798349618912, 0.004088186658918858, 0.00719388946890831, 0.019122162833809853, 0.017526451498270035, 0.023315850645303726, 0.024845624342560768, 0.03650354966521263, 0.01885840855538845, 0.04138299822807312, 0.008024714887142181, 0.0067586954683065414, -0.0013575087068602443, 0.015231791883707047, 0.007253234274685383, -0.007978557609021664, 0.030542708933353424, 0.00252874125726521, -0.03352313116192818, 0.01154583040624857, -0.0030463584698736668, 0.015521921217441559, -0.012350279837846756, -0.02888105995953083, 0.024054361507296562, 0.00782689917832613, -0.014902099035680294, -0.11446922272443771, -0.012007399462163448, 0.023394977673888206, 0.02430492825806141, -0.01761876605451107, 0.018489154055714607, 0.0017523154383525252, -0.008453315123915672, 0.011605174280703068, 0.007378517184406519, 0.01707806997001171, -0.0011267239460721612, -0.01870015636086464, -0.005898198112845421, 0.03249448910355568, -0.031835105270147324, -0.010662253946065903, -0.023619167506694794, -0.028406303375959396, 0.018462777137756348, -0.0019171616295352578, 0.010635878890752792, -0.014968037605285645, 0.009917149320244789, -0.029355816543102264, -0.01947823166847229, -0.031122969463467598, 0.028142549097537994, 0.0193727295845747, 0.017144007608294487, 0.018067147582769394, -0.005802587140351534, 0.005301455035805702, -0.014400966465473175, 0.0034189107827842236, 0.0031485629733651876, -0.028063422068953514, 0.0006218823837116361, 0.014097649604082108, -0.025874264538288116, -0.004259626846760511, -0.0026556728407740593, 0.0087170684710145, -0.03850807994604111, 0.0028864576015621424, -0.010774349793791771, 0.003268900793045759, 0.017289072275161743, 0.018502341583371162, -0.010853475891053677, -0.03267911821603775, 0.010332562029361725, -0.03230985999107361, -0.010358937084674835, -0.0010080346837639809, -0.007793929893523455, -0.0008637942373752594, 0.002467748010531068, 0.025927014648914337, 0.005621256306767464, -0.029645945876836777, -0.022300397977232933, -0.0037848695646971464, 0.023540042340755463, -0.006798258516937494, -0.0030611944384872913, -0.019676046445965767, 0.010602910071611404, 0.007431268226355314, -0.011684301309287548, -0.032072484493255615, 0.029725072905421257, -0.0002969292690977454, 0.01697256788611412, -0.0275095384567976, -0.001519058016128838, -0.016181306913495064, 0.021588262170553207, -0.004932199139147997, -0.003831026377156377, -0.001405314076691866, -0.00909291859716177, -0.006485050544142723, -0.017856143414974213, 0.015033976174890995, 0.008196154609322548, -0.00029218994313851, 0.00013795569248031825, 0.027113908901810646, -0.0005151444929651916, -0.0034914431162178516, 0.01025343593209982, 0.01289097499102354, 0.01000946294516325, 0.0025748980697244406, 0.019359542056918144, 0.013886646367609501, -0.014546031132340431, 0.007675240747630596, 0.0023507073055952787, -0.016748378053307533, -0.017790205776691437, -0.054386068135499954, 0.014809785410761833, 0.019122162833809853, 0.00045621194294653833, 0.00855222251266241, -0.012040369212627411, 0.008248905651271343, -0.0022996049374341965, -0.006857603322714567, 0.0017753939609974623, -0.01802758313715458, 0.005156389903277159, 0.017895707860589027, 0.003366159973666072, -0.0074642375111579895, -0.01958373188972473, 0.010484220460057259, -0.022959783673286438, 0.019438667222857475, 0.023368602618575096, -0.0024842326529324055, -0.009435798041522503, 0.007002667989581823, -0.010029245167970657, -0.03278461843729019, -0.005228922702372074, -0.007582926657050848, 0.010358937084674835, -0.014691095799207687, -0.0022122364025563, 0.030384456738829613, -0.00689716637134552, 0.012759098783135414, 0.008169779554009438, -0.014730659313499928, -0.010926008224487305, 0.0018940832233056426, 0.0033463784493505955, 0.006053153425455093, 0.02756229043006897, -0.013378920033574104, 7.062630902510136e-05, 0.008743444457650185, -0.03360225632786751, -0.023315850645303726, 0.0009915500413626432, 0.008974228985607624, -0.002017717808485031, -0.0076488652266561985, -0.0033348393626511097, 0.016524186357855797, 0.006633412558585405, 0.01573292352259159, -0.02637539803981781, -0.00560477189719677, -0.006488347891718149, 0.004579428117722273, 0.0015075188130140305, 0.006844415329396725, -0.008835758082568645, 0.014915287494659424, -0.015521921217441559, -0.002993607660755515, -0.014097649604082108, -0.007437861990183592, -0.021245382726192474, -0.020467307418584824, -0.007727991323918104, 0.013543765991926193, -0.006455378606915474, -0.017552826553583145, 0.005845447536557913, 0.0167879406362772, 0.011737051419913769, -0.003999169450253248, -0.005268485751003027, 0.006138873752206564, -0.0109787592664361, -0.029329441487789154, 0.007582926657050848, 0.01227115374058485, 0.012244777753949165, -0.05019238218665123, 0.013101978227496147, 0.008262093178927898, 0.010424875654280186, -0.011427140794694424, 0.024423617869615555, -0.016827503219246864, -0.006613630801439285, -0.003348026890307665, -0.0024693964514881372, 0.003827729495242238, -0.00258643738925457, -0.029725072905421257, 0.04101374372839928, -0.010147933848202229, -0.015244979411363602, 0.013952584937214851, 0.022722404450178146, -0.005060779396444559, 0.007741178851574659, -0.006429003085941076, -0.019029848277568817, -0.002996904542669654, 0.004826697520911694, 0.0023457619827240705, -0.036925554275512695, 0.012627221643924713, -0.0022682840935885906, -0.01124910730868578, -0.00404202938079834, -0.020876126363873482, 0.00789283774793148, -0.009059948846697807, 0.023566417396068573, -0.012040369212627411, -0.006244375370442867, -0.0064784567803144455, 0.01818583719432354, 0.012581064365804195, 0.01834408938884735, 0.020005738362669945, -0.019873861223459244, 0.027245786041021347, -0.003633210901170969, 0.016418684273958206, -0.007378517184406519, -0.005232219584286213, 0.027061156928539276, -0.029830574989318848, -0.0007747772615402937, -0.011684301309287548, -0.011427140794694424, 0.020190365612506866, 0.004810213111341, -0.0016674196813255548, 0.03494740277528763, -0.03246811404824257, 0.0446799211204052, -4.74963198939804e-05, -0.024634620174765587, 0.011756833642721176, -0.029092062264680862, 0.01651099883019924, -0.005914682988077402, 0.006412518210709095, -0.014928475022315979, -0.010629285126924515, 0.010932601988315582, -0.009673177264630795, -0.002771065104752779, -0.007787336129695177, -0.021100318059325218, -0.034499019384384155, -0.020955253392457962, 0.014018523506820202, -0.0198870487511158, -0.016313182190060616, 0.04109286889433861, -0.02586107701063156, 0.029065687209367752, 0.017420949414372444, -0.038006946444511414, -0.006376252043992281, 0.012910757213830948, -0.015192228369414806, -0.01810671016573906, -0.03225710988044739, 0.005865228828042746, 5.733557918574661e-05, -0.03769044205546379, -0.004012357443571091, -0.011018321849405766, 0.0019798032008111477, 0.007602708414196968, -0.0050179194658994675, 0.002916129771620035, 0.02203664369881153, 0.0071477326564490795, 0.020678311586380005, -0.02756229043006897, -0.007312579080462456, -0.02360597997903824, 0.01953098177909851, -0.01751326397061348, -0.01073478627949953, -0.023131223395466805]"
Blood Mask,1636744,2007-06-02,The Foywonder,1/5,rotten,"It doesn't matter if a movie costs 300 million or only 300 dollars; good is good and bad is bad, and Bloodmask: The Possession of Nicole Lameroux is just plain bad.","[-0.006344131659716368, -0.011165671981871128, 0.023076578974723816, -0.036413710564374924, -0.0017474469495937228, -0.02380896545946598, -0.0052487654611468315, -0.05463341623544693, -0.003780781291425228, -0.016780629754066467, 0.02422012761235237, 0.029526714235544205, 0.017757143825292587, -0.01185308676213026, -0.007323858328163624, 0.011377678252756596, 0.05324573442339897, -0.018656566739082336, 0.008807903155684471, 0.0032893118914216757, -0.019221916794776917, 0.004696263466030359, -0.02527373656630516, 0.01069668773561716, -0.005637443624436855, -0.01213576178997755, 2.5609915610402822e-05, -0.013568411581218243, 0.022562623023986816, -0.0003800456179305911, -0.007555138319730759, -0.009212642908096313, -0.006080729886889458, 0.00010630436008796096, -0.007606533821672201, -0.011563987471163273, 0.0003712120233103633, 0.003414588514715433, 0.015971150249242783, 0.02010848931968212, 0.027368102222681046, -0.003986363299190998, -0.005708112381398678, -0.02283244952559471, -0.034255098551511765, -0.016189582645893097, 0.007651504594832659, -0.031299859285354614, -0.037518713623285294, 0.010767356492578983, 0.005794842261821032, 0.0048343888483941555, -0.02319221943616867, -0.009912907145917416, 0.002492681611329317, 0.018219703808426857, 0.035385798662900925, -0.01920906826853752, 0.0256849005818367, -0.02242128551006317, -0.002963271690532565, -0.015213067643344402, -0.017667202278971672, -0.01980011537671089, 0.002385072410106659, -0.00972017366439104, -0.002136125462129712, -0.0052648261189460754, -0.019067730754613876, 0.007426649332046509, 0.012951665557920933, 0.02488826960325241, 0.0233721025288105, -0.02028837241232395, 0.002801054622977972, -0.016986211761832237, -0.032456256449222565, -0.003957453183829784, -0.004786205943673849, -0.0023963151033967733, 0.034203704446554184, -0.025286585092544556, -0.024104489013552666, 0.02434861660003662, 0.018553774803876877, 0.0004477029724512249, 0.0002977325057145208, 0.010227704420685768, -0.025877634063363075, 0.005730598233640194, 0.0015506985364481807, -0.004789418075233698, 0.010908694937825203, 0.00512348860502243, 0.015238765627145767, 0.007291736081242561, -0.006087154150009155, 0.04075663164258003, -0.015097427181899548, 0.00024995076819323003, 0.0127139613032341, -0.014365041628479958, -0.028807176277041435, -0.005865511018782854, -0.017924180254340172, -0.04093651473522186, 0.0218302384018898, -0.017590109258890152, 0.027984848245978355, 0.0028460256289690733, -0.017114700749516487, -0.005611746106296778, 0.004413588438183069, -0.04024267569184303, 0.01196872629225254, 0.013632656075060368, 0.009302585385739803, -0.006109640002250671, -0.01132628321647644, -0.015701325610280037, 0.019954301416873932, 0.008981362916529179, 0.026931241154670715, 0.00572096137329936, 0.026494380086660385, 0.014005273580551147, -0.004490681458264589, -0.014133761636912823, -0.00964308064430952, 0.007413800805807114, 0.01748731918632984, 0.020082790404558182, 0.037955574691295624, 0.014133761636912823, -0.005213430617004633, 0.030965788289904594, -0.027984848245978355, 0.015984000638127327, -0.015174521133303642, -0.01998000033199787, 0.015714174136519432, 0.021149247884750366, -0.020455408841371536, 0.005605321377515793, 0.0051427618600428104, 0.015367253683507442, -0.006957665551453829, 0.011390527710318565, -0.0044296495616436005, -0.011037182994186878, 0.017590109258890152, -0.008043395355343819, 0.03636231645941734, 0.0032877058256417513, 0.017153248190879822, 0.0020927605219185352, 0.019581684842705727, -0.001904845703393221, -0.010985787957906723, -0.005181308835744858, -0.013067305088043213, 0.034178007394075394, -0.0017522652633488178, 0.007651504594832659, 0.008923543617129326, 0.0035077426582574844, 0.032995909452438354, -0.012039395049214363, -0.004542076960206032, -0.008762932382524014, 0.0033664051443338394, 0.03667068853974342, -0.01900348626077175, 0.027779266238212585, -0.008929967880249023, 0.02108500339090824, 0.02201012149453163, 0.010176308453083038, -0.0005384481628425419, -0.031299859285354614, 0.032790329307317734, 0.017243189737200737, 0.034306496381759644, 0.030580321326851845, -0.011673202738165855, 0.019555987790226936, -0.010561774484813213, -0.034357890486717224, 0.032045092433691025, 0.0019257250241935253, -0.020840873941779137, 0.007632231339812279, 0.013915331102907658, 0.00134190428070724, -0.6574512124061584, -0.003255583578720689, -0.0053901029750704765, 0.007240340579301119, 0.010722385719418526, 0.0058398135006427765, 0.022151459008455276, 0.011005060747265816, -0.03443498536944389, 0.018630867823958397, -0.0021537926513701677, 0.015007485635578632, -0.009797266684472561, -0.0009965908247977495, -0.015829812735319138, -0.017872784286737442, 0.0012214460875838995, -0.015894057229161263, -0.020082790404558182, -0.001562744379043579, -0.037929877638816833, 0.031274162232875824, -0.013221492059528828, -0.004195157438516617, 0.004888996947556734, 0.010568199679255486, 0.0017619018908590078, -0.018977787345647812, -0.010240552946925163, -0.018900694325566292, 0.003501318395137787, 0.009161247871816158, 0.008974938653409481, -0.0012672202428802848, 0.04425152391195297, -0.026520077139139175, 0.007368829566985369, 0.019761569797992706, 0.021072154864668846, -0.007638656068593264, -0.032970212399959564, 0.0025376526173204184, -0.008248977363109589, -0.010510379448533058, -0.011898057535290718, 0.008994212374091148, -0.005762720014899969, 0.00023569654149468988, -0.023282160982489586, 0.017256038263440132, -0.008293948136270046, 0.01082517672330141, 0.018104063346982002, 0.005749871488660574, -0.0056342314928770065, -0.0011025940766558051, 0.018939241766929626, -0.015161671675741673, 0.004124488681554794, 0.015033183619379997, -0.011332707479596138, -0.02370617352426052, -0.003001818200573325, 0.0015547138173133135, 0.0025007121730595827, -0.017718598246574402, -0.0019723023287951946, 0.011576835997402668, 0.006790630053728819, -0.05632946640253067, 0.005245552863925695, 0.016330920159816742, -0.025312282145023346, -0.010985787957906723, -0.022022971883416176, 0.015598533675074577, 0.05252619832754135, -0.0007721370784565806, -0.012200006283819675, 0.00019805335614364594, 0.0040184855461120605, -0.00951459165662527, -0.02406594157218933, 0.026083216071128845, 0.008229704573750496, -0.00927046313881874, -0.0014752114657312632, -0.005855874624103308, -0.011005060747265816, -0.006925543304532766, -0.019838662818074226, 0.013195794075727463, -0.020712384954094887, -0.0066557168029248714, -0.004047395661473274, 0.02090511843562126, -0.010112063959240913, 0.015919756144285202, 0.011011485941708088, -0.023102276027202606, 0.010690263472497463, -0.0035430772695690393, 0.02450280450284481, -0.009116276167333126, 0.01805266924202442, 0.006546501535922289, 0.009161247871816158, -0.016729233786463737, 0.029937878251075745, -0.018913542851805687, -0.0002310789714101702, 0.0025296222884207964, 0.008936392143368721, -0.035462893545627594, -0.02347489446401596, -0.024746932089328766, 0.015097427181899548, 0.003835389157757163, 0.020866572856903076, -0.04844025522470474, -0.014056668616831303, 0.017101852223277092, 0.010908694937825203, 0.018926391378045082, 0.007317434065043926, -0.018091214820742607, -0.010099215433001518, 0.014763357117772102, -0.030040668323636055, 0.006144974380731583, -0.0023561622947454453, 0.003109427634626627, 0.019710173830389977, -0.003315009642392397, 0.013150823302567005, 0.023127974942326546, 0.003642655909061432, -0.016099639236927032, 0.025209492072463036, -0.005463983863592148, 0.016767781227827072, -0.010484681464731693, -0.011628231033682823, -1.731586621644965e-06, 0.004352556075900793, -0.037287432700395584, -0.009058456867933273, 0.008345344103872776, 0.0003501318278722465, 0.017037607729434967, -0.018759356811642647, -0.005602109245955944, -0.001938573899678886, -0.010484681464731693, -0.026365891098976135, -0.010632443241775036, -0.003050001570954919, 0.0002487461897544563, -0.011011485941708088, -0.0065529257990419865, 0.04273535683751106, 0.014557775110006332, -0.008171884343028069, 0.009206218644976616, -0.008807903155684471, -0.010202006436884403, 0.018296796828508377, 0.013170096091926098, -0.025517864152789116, -0.027291009202599525, 0.009058456867933273, 0.003976726904511452, -0.009007060900330544, 0.026648566126823425, -0.007947028614580631, 0.025800539180636406, 0.015598533675074577, 0.02077662944793701, 0.006816328037530184, -0.018862148746848106, 0.024695536121726036, 0.011210642755031586, 0.009777993895113468, 0.023616231977939606, 0.01262401882559061, 0.00574023462831974, 0.014429286122322083, -0.009424649178981781, -2.2096550310379826e-05, 0.006784205790609121, 0.014018122106790543, 0.02378326654434204, -0.032173581421375275, -0.020866572856903076, 0.0007922134245745838, -0.02051965333521366, 0.019915755838155746, 0.0008929967880249023, -0.002385072410106659, 0.008300373330712318, 0.021406225860118866, 0.00048745417734608054, -0.006177096627652645, 0.005900845862925053, -0.005627807229757309, -0.007092578802257776, 0.014647716656327248, -0.020378315821290016, -0.0028460256289690733, 0.017371678724884987, -0.003944604657590389, -0.012900269590318203, 0.013041608035564423, 0.006421225145459175, 0.013157247565686703, 0.0008247371297329664, 0.017230341210961342, 0.009745871648192406, 0.019915755838155746, 0.007060456555336714, 0.005014273338019848, -0.018836449831724167, 0.01279105432331562, 0.0028267523739486933, 0.009199794381856918, -0.008011273108422756, 0.019877208396792412, -0.017474468797445297, 0.028164733201265335, -0.012848874554038048, -0.015482894144952297, 0.013722597621381283, -0.006687839049845934, 0.017217492684721947, 0.011358405463397503, -0.013735447078943253, 0.029603807255625725, 0.009135549888014793, 0.016986211761832237, 0.011037182994186878, -0.00960453413426876, 0.027034031227231026, 0.027111126109957695, 0.002829964505508542, -0.00588799687102437, -0.013157247565686703, 0.018348192796111107, -0.000499098445288837, -0.00530979735776782, 0.007947028614580631, 0.008159034885466099, 0.00042039912659674883, -0.0204168614000082, -0.001003818353638053, 0.009803690947592258, -0.033047303557395935, -0.008133337832987309, 0.0037390224169939756, 0.022562623023986816, 0.02386035956442356, -0.012476257048547268, -0.0060004242695868015, 0.007150398567318916, -0.009893633425235748, 0.009745871648192406, -0.006559350527822971, 0.0010423649800941348, 0.005846237763762474, 0.011223492212593555, 0.012456984259188175, -0.010805903933942318, -0.012489106506109238, 0.00021140414173714817, -0.008962090127170086, 0.0013724204618483782, 0.015662778168916702, 0.0020879420917481184, 0.019890056923031807, 0.018373889848589897, 0.0016165489796549082, -0.01818115822970867, -0.04191302880644798, 0.013337131589651108, 0.002545683179050684, -0.013915331102907658, -0.029937878251075745, -0.030811600387096405, -0.03764720261096954, -0.016433710232377052, 0.016999060288071632, -0.001454332028515637, 0.0027303858660161495, 0.019054880365729332, -0.010838025249540806, -0.0043846783228218555, -0.0017908118898048997, 0.0245285015553236, 0.0006633231532759964, -0.024232978001236916, -0.00035495017073117197, 0.005939392372965813, -0.0021313070319592953, 0.004757295828312635, -0.019144823774695396, 0.002067062770947814, 0.003080517752096057, -0.001969089964404702, 0.007137550041079521, 0.011666778475046158, 0.009206218644976616, 0.026520077139139175, 0.005300160963088274, -0.021174944937229156, 0.015598533675074577, 0.019221916794776917, -0.006970514543354511, -0.031042881309986115, 0.018014121800661087, 0.007079729810357094, 0.018296796828508377, -0.02021127939224243, -0.006443710532039404, -0.006610746029764414, -0.008756508119404316, 0.10417867451906204, 0.027291009202599525, 0.010536077432334423, 0.037544410675764084, 0.004092366434633732, -0.005255189724266529, -0.013478469103574753, 0.0039992122910916805, 0.016793478280305862, -0.006125701125711203, 0.027779266238212585, -0.020147034898400307, 0.02211291342973709, 0.030708810314536095, 0.0008881784742698073, -0.018618019297719002, 0.009244765155017376, 0.009900057688355446, 0.0013402982149273157, -0.010394739918410778, -0.009109851904213428, -0.015816964209079742, 0.026828449219465256, -0.0036651415284723043, -0.015958301723003387, -0.014917543157935143, 0.016395164653658867, -0.004648080561310053, -0.004664141684770584, 0.012167884036898613, -0.02527373656630516, -0.005293736234307289, 0.009482469409704208, 0.009945028461515903, -0.015816964209079742, 0.02000569738447666, -0.002772144740447402, -0.007214643061161041, 0.04628164693713188, -0.018194006755948067, 0.0197744183242321, 0.016318069770932198, -0.004750871565192938, 0.019054880365729332, 0.00984866265207529, -0.026468681171536446, -0.017885632812976837, 0.014763357117772102, 0.04954526200890541, -0.016510803252458572, 0.03731313347816467, -0.03553998842835426, -0.029706597328186035, 0.004715537186712027, 0.01160895824432373, -0.012656141072511673, -0.027034031227231026, 0.012784630060195923, 0.0010415619472041726, 0.023282160982489586, -0.02044256031513214, -0.034640565514564514, 0.019119124859571457, 0.009874359704554081, -0.024464257061481476, -0.034589171409606934, -0.005425437353551388, -0.007619382813572884, -0.0200313962996006, -0.014724810607731342, -0.0049179065972566605, -0.014043820090591908, -0.009572411887347698, -0.017191793769598007, 0.019350405782461166, 0.014776205644011497, 0.012611170299351215, -0.02447710558772087, 0.0215732604265213, 0.026340192183852196, -0.023487742990255356, -0.030914392322301865, -0.005068880971521139, -0.036028243601322174, 0.0013852693373337388, 0.012013697996735573, -0.003661929164081812, -0.017744295299053192, -0.023076578974723816, -0.00041798994061537087, 0.021663201972842216, 0.02383466251194477, -0.01037546619772911, -0.0021023971494287252, 0.00303715281188488, -0.00553465262055397, 0.021817389875650406, 0.008229704573750496, -0.004195157438516617, 0.0035784116480499506, 2.532131657062564e-05, -0.007992000319063663, -0.02062244340777397, 0.003761508036404848, 0.02529943361878395, -0.013150823302567005, -0.027959151193499565, 0.019260462373495102, 0.0003396921092644334, -0.011429074220359325, -0.016433710232377052, -0.011949453502893448, -0.002968090120702982, 0.016420861706137657, 0.0213162824511528, -0.007895633578300476, -0.0009901664452627301, 0.04258117079734802, 0.004548501688987017, -0.016253827139735222, -0.030477531254291534, -0.026828449219465256, 0.0359511524438858, 0.031454045325517654, 0.0045517138205468655, -0.0013876784360036254, 0.010285523720085621, -0.028627293184399605, -0.010118489153683186, 0.016202431172132492, -0.02442570962011814, 0.02424582652747631, 0.011217067018151283, -0.036567896604537964, -0.031376950442790985, -0.006642868276685476, 0.003491681767627597, -0.009649504907429218, -0.019478892907500267, -0.016073942184448242, -0.009900057688355446, 0.009052031673491001, -0.010118489153683186, -0.02121349237859249, 0.0015635474119335413, -0.026802752166986465, -0.007844237610697746, -0.017461620271205902, 0.007388102822005749, 0.00031017986475490034, -0.0059426045045256615, -0.009411800652742386, -0.02501675859093666, -0.01087657269090414, -0.002899027429521084, -0.015945453196763992, -0.013979575596749783, -0.015791267156600952, 0.031813815236091614, 0.011184945702552795, 0.04111639782786369, 0.01148046925663948, 0.01193017978221178, 0.008660141378641129, -0.013362829573452473, 0.01962023228406906, 0.004208006430417299, 0.008692263625562191, -0.032738931477069855, 0.009591684676706791, -0.00020387550466693938, 0.013684051111340523, 0.026802752166986465, -0.016677839681506157, 0.007465196307748556, 0.006674990523606539, 0.013285736553370953, 0.010510379448533058, -0.02619885466992855, -0.00048143125604838133, 0.004060244187712669, -0.0002630004019010812, 0.0020397587213665247, -0.002658110810443759, -0.00972017366439104, -0.034717660397291183, -0.0058012669906020164, 0.013619806617498398, 0.006472620647400618, -0.026006121188402176, 0.04116779565811157, -0.012071517296135426, 0.0009588472894392908, -0.01070953719317913, 0.011499742977321148, 0.003035546513274312, 0.006035758648067713, 0.01859232224524021, 0.0019160883966833353, -0.009572411887347698, -0.015829812735319138, -0.012071517296135426, -0.0179755762219429, -0.008801478892564774, 0.007484469562768936, 0.02596757560968399, 0.0006998621392995119, -0.02619885466992855, -0.018695112317800522, -0.027085427194833755, -0.011043607257306576, -0.029578108340501785, -0.024721235036849976, -0.028935665264725685, 0.006241340655833483, -0.006263826508074999, -0.013137973845005035, -0.005920119117945433, -0.021663201972842216, -0.02242128551006317, 0.018399588763713837, -0.0037486590445041656, -0.00040714870556257665, -0.0238860584795475, 0.038906391710042953, 0.017358830198645592, -0.019054880365729332, -0.02491396851837635, 0.02409164048731327, -0.014210855588316917, 0.006565774790942669, 0.006260613910853863, 0.011801691725850105, -0.02044256031513214, 0.031042881309986115, 0.018026970326900482, -0.018309645354747772, -0.02375756949186325, -0.01776999421417713, 0.00968162715435028, 0.008281099610030651, 0.012251402251422405, -0.018618019297719002, -0.004882572218775749, 0.009623806923627853, 0.019350405782461166, -0.020301220938563347, -0.003902845550328493, -0.023127974942326546, -0.024438560009002686, -0.010927967727184296, -0.003819328034296632, -0.0015659566270187497, -0.001210203394293785, 0.005566774867475033, -0.026828449219465256, 0.026982637122273445, -0.027547987177968025, -0.004201582167297602, -0.004159823060035706, 0.013799691572785378, 0.034614868462085724, -0.0019032395211979747, 0.012746083550155163, 0.027650777250528336, 0.012052244506776333, 0.0023657989222556353, 0.01115924771875143, -0.010446134954690933, 0.02159895747900009, -0.007754295598715544, 0.006925543304532766, 0.007805691100656986, -0.003257189644500613, 0.0043654050678014755, -0.0006568987155333161, -0.024027395993471146, -0.031916603446006775, 0.008486681617796421, 0.009617382660508156, 0.004294736310839653, -0.010356192477047443, -0.007985575124621391, -0.026597170159220695, -0.028575897216796875, -0.015470044687390327, -0.008345344103872776, -0.014776205644011497, 0.003359980648383498, -0.007747871335595846, 0.018759356811642647, -0.00923191662877798, 0.001116245985031128, 0.015919756144285202, 0.0017892058240249753, -0.013517015613615513, 0.015200218185782433, 0.003809691406786442, -0.014313646592199802, -0.008775780908763409, 0.006254189647734165, 0.007458771578967571, 0.0023465256672352552, 0.003780781291425228, -0.0032604020088911057, 0.0034691961482167244, 0.018412437289953232, -0.01217430830001831, -0.0019947877153754234, -0.020069941878318787, -0.007580835837870836, -0.0033085851464420557, 0.015367253683507442, -0.04926258325576782, 0.002158610848709941, 0.0012985393404960632, 0.017474468797445297, -0.0359511524438858, -0.005402951966971159, 0.014866148121654987, -0.018759356811642647, -0.0055956849828362465, 0.023847511038184166, -0.004574199207127094, 0.0029391800053417683, -0.008184732869267464, -0.007246765308082104, 0.009276887401938438, -0.008962090127170086, 0.015804115682840347, 0.01728173717856407, 0.035719871520996094, -0.023847511038184166, -0.025877634063363075, -0.012733235023915768, 0.0012559774331748486, -0.003735810285434127, 0.021791690960526466, 0.017628656700253487, 0.003295736387372017, -0.0062895240262150764, -0.0008335707243531942, -0.0188749972730875, 0.03759580850601196, 0.01132628321647644, 0.00919337011873722, -0.002307979157194495, -0.024207279086112976, -0.0002397118223598227, -0.012668990530073643, -0.008544501848518848, 0.028961362317204475, -0.028036244213581085, -0.015765568241477013, -0.01962023228406906, 0.015534289181232452, -0.0436604768037796, 0.0010608352022245526, -0.026211703196167946, 0.01095366571098566, 0.05065026506781578, 0.011217067018151283, -0.004805479198694229, 0.010067093186080456, 0.035000335425138474, 0.0039992122910916805, 0.005306585226207972, 0.017024759203195572, 0.01902918331325054, 0.0019321495201438665, 0.017256038263440132, 0.008968514390289783, -0.027702173218131065, -0.02219000644981861, 0.00588799687102437, 0.018001273274421692, 0.010857298970222473, 0.028652990236878395, -0.019221916794776917, -0.01838674023747444, -0.0012856904650107026, 0.028396012261509895, 0.018553774803876877, -0.013028758578002453, -0.006456559523940086, -0.005974726751446724, 0.01024697721004486, -0.012000848539173603, 0.02445140853524208, 0.0008002439863048494, 0.008827176876366138, 0.030940089374780655, -0.013080154545605183, -0.00547683285549283, -0.020943665876984596, -0.0023786479141563177, 0.004256189800798893, -0.006610746029764414, -0.017333131283521652, 0.028652990236878395, -0.004220855422317982, 0.026828449219465256, 0.01169890072196722, -0.012990212067961693, 0.007953453809022903, 0.007510167080909014, -0.009186944924294949, -0.017294585704803467, 0.000267015682766214, -0.001435058657079935, -0.0011282918276265264, -0.021663201972842216, 0.014352193102240562, -0.015110276639461517, -0.006202794145792723, -0.01969732530415058, 0.028730083256959915, -0.013337131589651108, 0.03525731340050697, 0.011718173511326313, -0.04129628464579582, 0.015611382201313972, -0.008293948136270046, 0.010497530922293663, 0.002428437350317836, -0.01013133767992258, -0.02213861048221588, -0.019787266850471497, 0.011621806770563126, -0.023230765014886856, -0.006263826508074999, -0.04576769098639488, -0.015495742671191692, -0.0043846783228218555, -0.012900269590318203, 0.00020156671234872192, 0.20517082512378693, 0.009655929170548916, -0.004336494952440262, 0.05710040032863617, 0.009578836150467396, 0.0034306494053453207, 0.0008552531944587827, 0.0034756206441670656, -0.024798328056931496, 0.01058104820549488, 0.025980424135923386, -0.008820752613246441, -0.01833534426987171, 0.010157035663723946, -0.007914906367659569, -0.026571473106741905, -0.029603807255625725, -0.01825825124979019, 0.0062060062773525715, -0.033921029418706894, -0.015778418630361557, 0.00310460920445621, 0.0018614806467667222, -0.0044874693267047405, 0.010908694937825203, -0.013799691572785378, -0.01172459777444601, 0.0245285015553236, 0.011641080491244793, 0.005560350604355335, 0.0029520289972424507, -0.029629504308104515, 0.016960514709353447, -0.014249402098357677, -0.032661840319633484, 0.004220855422317982, -0.024438560009002686, -0.016433710232377052, -0.010388314723968506, 0.015829812735319138, 0.013941029086709023, 0.031582534313201904, 0.007407376077026129, -0.018913542851805687, 0.019761569797992706, 0.002542471047490835, -0.009591684676706791, 0.010060668922960758, -0.0024461045395582914, -0.011846662499010563, -0.007009061053395271, -0.015123125165700912, 0.008473833091557026, 0.02278105542063713, -0.028498804196715355, 0.012540501542389393, 0.007625807076692581, 0.001101791043765843, -0.00039008379098959267, -0.011653929017484188, 0.007439498323947191, 0.015945453196763992, -0.014660566113889217, 0.013761145062744617, -0.02540222555398941, 0.023590533062815666, -0.02172744646668434, 0.00972017366439104, -0.022742507979273796, -0.0488000251352787, 0.011005060747265816, -0.004008848685771227, -0.019581684842705727, 0.014275100082159042, 0.007567987311631441, -0.008653717115521431, 0.02283244952559471, 0.027856359258294106, 0.00627988763153553, 0.005852662492543459, -0.02486257255077362, -0.02545361965894699, 0.0035816237796097994, -0.01900348626077175, -0.007503742817789316, -0.05131840333342552, -0.0014719992177560925, 0.010266250930726528, -0.00285084405913949, -0.011801691725850105, 0.019954301416873932, -0.017217492684721947, -0.005627807229757309, -0.0008343738154508173, 0.0024557411670684814, -0.021843086928129196, 0.019504591822624207, -0.0005103412549942732, -0.025851935148239136, -0.007233916316181421, -0.010767356492578983, 0.005480044987052679, 0.02098221145570278, 0.010979363694787025, -0.0028379950672388077, -0.0011025940766558051, 0.02324361354112625, 0.02468268759548664, 0.05219212919473648, -0.016587896272540092, 0.006042183376848698, -0.01949174329638481, -0.001773144700564444, -0.0036008970346301794, 0.017461620271205902, 0.014095215126872063, 0.025183795019984245, 0.004057032056152821, 0.015315858647227287, -0.034948937594890594, -0.012283524498343468, 0.0029696961864829063, 0.012964514084160328, 0.0006785811856389046, 0.03512882441282272, -0.01140337623655796, -0.007940604351460934, -0.01756441220641136, 0.026622867211699486, -0.008435286581516266, 0.0007757507846690714, -0.015984000638127327, -0.005357980728149414, -0.0023497380316257477, -0.029501015320420265, -0.003857874544337392, 0.008178308606147766, 0.00960453413426876, 0.0007661141571588814, 0.0066557168029248714, 0.011011485941708088, 0.014532077126204967, 0.0021570047829300165, -0.009912907145917416, 0.026597170159220695, -0.015752719715237617, 0.004069881048053503, -0.005197369959205389, -0.030117761343717575, -0.0022003697231411934, -0.03636231645941734, -0.032404862344264984, -0.003286099759861827, -0.02573629654943943, 0.015585685148835182, -0.011499742977321148, -0.047258161008358, -0.022434134036302567, -0.027933454141020775, 0.005772356875240803, -0.024001697078347206, 0.006886996794492006, 0.020275523886084557, -0.019877208396792412, 0.0003517379518598318, -0.004481045063585043, -0.16127906739711761, 0.031454045325517654, -0.014069518074393272, -0.019170520827174187, 0.02123918943107128, -0.015906907618045807, 0.024438560009002686, -0.006694263778626919, -0.031711023300886154, -0.020082790404558182, 0.006061456631869078, -0.0047958423383533955, -0.016896270215511322, -0.0032636141404509544, 0.007009061053395271, -0.014198006130754948, -0.0011371254222467542, 0.04219570383429527, 0.002918300684541464, 0.0025986849796026945, -0.004233703948557377, 0.00564386835321784, 0.007388102822005749, 0.005910482257604599, 0.023307858034968376, 0.004757295828312635, 0.005611746106296778, 0.018129762262105942, 0.005178096238523722, -0.013337131589651108, -0.013851086609065533, -0.004789418075233698, -0.009276887401938438, 0.038392435759305954, 0.02319221943616867, 0.010780205950140953, -0.0061867330223321915, 0.006051819771528244, -0.0008801479125395417, 0.004285099450498819, 0.0102084307000041, 0.0026661413721740246, 0.002751265186816454, -0.02599327266216278, -0.0001220643098349683, 0.05453062430024147, 0.032276373356580734, 0.005245552863925695, 0.010060668922960758, -5.756898099207319e-05, 0.0031640352681279182, -0.02242128551006317, -0.014968939125537872, -0.003359980648383498, 0.012913119047880173, 0.028396012261509895, 0.006202794145792723, 0.012360617518424988, -0.012662566266953945, 0.004622382577508688, -0.010317645967006683, -0.024464257061481476, -0.029089851304888725, 0.010189157910645008, -0.0229866374284029, -0.022588321939110756, 0.016330920159816742, 0.0007275675307027996, -0.02547931857407093, -0.007195369806140661, -0.010548925958573818, 0.027599383145570755, -0.017525864765048027, -0.02511955052614212, 0.007574411574751139, -0.00012778607197105885, 0.007516591809689999, 0.0222157035022974, 0.019183369353413582, 0.01202012225985527, -0.0014800297794863582, 0.035617079585790634, -0.01308657880872488, -0.0122642507776618, 9.927763312589377e-05, -0.0012399164261296391, 0.006260613910853863, -0.01164750475436449, 0.015855511650443077, -0.014416437596082687, 0.0030435770750045776, -0.02614746056497097, 0.00016542925732210279, -0.011512591503560543, -0.010850874707102776, 0.03456347435712814, 0.005406164098531008, -0.004676990211009979, -0.005223067477345467, -0.016202431172132492, -0.006970514543354511, 0.019710173830389977, -0.020172733813524246, 0.008994212374091148, 0.025723446160554886, 0.0066557168029248714, 0.02108500339090824, 0.010202006436884403, 0.009366829879581928, -0.031505439430475235, -0.02334640547633171, -0.015110276639461517, 0.005971514619886875, 0.02147046849131584, 0.01189163327217102, 0.029398225247859955, 0.010921543464064598, -0.006829177029430866, 0.016202431172132492, -0.009135549888014793, 0.06095506250858307, -0.003517379518598318, -0.030631717294454575, 0.016780629754066467, -0.026417285203933716, -0.013812540099024773, -0.10489821434020996, 0.014609170146286488, -0.015328707173466682, -0.0009331495384685695, -0.032199278473854065, 0.026597170159220695, -0.003915694542229176, 0.031197067350149155, 0.02046825736761093, 0.024695536121726036, 0.009867935441434383, -0.026597170159220695, -0.015354405157268047, -0.022022971883416176, 0.025466470047831535, -0.002552107675001025, 0.003623382654041052, 0.0019273312063887715, -0.003125488758087158, 0.04407164081931114, 0.010189157910645008, 0.01217430830001831, -0.008737234398722649, -0.027059730142354965, 0.018155459314584732, -0.028061941266059875, -0.032147884368896484, 0.028447408229112625, 0.012566199526190758, 0.015804115682840347, 0.008473833091557026, -0.021020758897066116, -0.0012889027129858732, -0.031094277277588844, -0.011223492212593555, 0.006713537033647299, -0.016035394743084908, -0.02121349237859249, 0.02352628856897354, -0.04204151779413223, -0.0044039515778422356, 0.02180453948676586, -0.012167884036898613, -0.021791690960526466, -0.009071305394172668, 0.014454984106123447, -0.017590109258890152, 0.02432291954755783, 0.01000284869223833, -0.015842663124203682, -0.031942300498485565, -0.0008219264564104378, -0.002267826348543167, 0.0019433923298493028, 0.021329130977392197, 0.0009869541972875595, 0.0006067078211344779, 0.0021521865855902433, -0.0015354405622929335, 0.015367253683507442, -0.004066668916493654, 0.007047607563436031, 0.002052607713267207, 0.033278584480285645, -0.0007693263469263911, -0.027727872133255005, 0.01123634073883295, -0.008769356645643711, -0.00067095214035362, -0.02342349849641323, -0.026365891098976135, 0.012456984259188175, -0.0017602958250790834, -0.003909270279109478, -0.034075215458869934, -0.008865723386406898, -0.021046455949544907, -0.021020758897066116, 0.016035394743084908, -0.016446558758616447, -0.007709324825555086, -0.0037004759069532156, 0.00947604514658451, -0.00898778811097145, 0.02044256031513214, 0.007503742817789316, 0.002648474182933569, 0.010272675193846226, 0.006719961296766996, -0.037236038595438004, -0.017718598246574402, 0.04021697863936424, 0.010362617671489716, -0.013041608035564423, -0.013915331102907658, -0.008281099610030651, -0.0010648504830896854, -0.027316708117723465, 0.0023931029718369246, 0.028241826221346855, -0.007529440335929394, -0.001689626951701939, -0.018322495743632317, 0.01024697721004486, -0.008300373330712318, -0.00040915634599514306, 0.014943241141736507, -0.029064154252409935, 0.013876784592866898, -0.0042626140639185905, -0.009540289640426636, -0.001351541024632752, -0.0019225128926336765, 0.033304281532764435, -0.011262038722634315, -0.0019819389563053846, -0.026108913123607635, -0.019350405782461166, 0.013645504601299763, -0.02596757560968399, -0.003755083540454507, 0.02021127939224243, -0.008544501848518848, -0.013478469103574753, -0.00327164470218122, 0.013722597621381283, -0.0048343888483941555, 0.002903845626860857, 0.0005854268674738705, 0.025929028168320656, -0.004667353816330433, -0.025620656087994576, 0.02501675859093666, -0.031762417405843735, 0.006854874547570944, -0.0012013697996735573, -0.007612958084791899, -0.015444347634911537, -0.02054535038769245, 0.0020381526555866003, 0.017333131283521652, 0.021277736872434616, -0.01784708723425865, -0.01218715775758028, 0.015007485635578632, -0.011955877766013145, -0.008872147649526596, -0.01173744723200798, -0.006260613910853863, -0.012476257048547268, 0.004583836067467928, -0.0015603351639583707, 0.03924046456813812, 0.011878784745931625, -0.02357768453657627, -0.0033664051443338394, -0.03651650249958038, -0.007349556311964989, 0.020275523886084557, 0.008717961609363556, -0.021059304475784302, 0.011396951973438263, 0.028498804196715355, 0.019196217879652977, -0.010934391990303993, -0.01099221222102642, -0.0037839936558157206, 0.019427498802542686, 0.0057755690068006516, 0.020609594881534576, -0.003726173657923937, -0.04193872585892677, 0.00040975864976644516, -0.008865723386406898, -0.002261401852592826, 0.023410649970173836, 0.020815176889300346, 0.012309221550822258, 0.019196217879652977, -0.005345131736248732, -0.013208642601966858, 0.021354829892516136, 0.017268886789679527, 0.0037582959048449993, -0.04371187090873718, -0.014056668616831303, 0.004905058071017265, 0.023115124553442, -0.014159459620714188, 0.018361041322350502, 0.008043395355343819, 0.00033186233486048877, -0.015367253683507442, 0.025260888040065765, 0.008595896884799004, 0.004134125541895628, 0.0028026606887578964, 0.006565774790942669, -0.0008905876311473548, 0.0129709392786026, 0.0020092427730560303, 0.016870573163032532, 0.01866941526532173, -0.00020397588377818465, -0.036439407616853714, -0.014943241141736507, 0.003069274825975299, 0.027162520214915276, -0.029835086315870285, -0.02301233448088169, 0.019633080810308456, 0.010047819465398788, 0.019016334787011147, -0.008698687888681889, 0.003202582010999322, 0.003388890763744712, 0.009546713903546333, 0.022768205031752586, 0.009521015919744968, -0.010908694937825203, -0.019877208396792412, 0.020609594881534576, 0.00617067189887166, 0.026288798078894615, 0.018682263791561127, 0.013414224609732628, 0.032122187316417694, 0.017204642295837402, 0.024464257061481476, -0.019337555393576622, -0.0008138958946801722, 0.0005264023202471435, 0.011743871495127678, -0.014956089667975903, -0.029501015320420265, 0.018245402723550797, -0.014493530616164207, 0.01025982666760683, -0.0010656535159796476, 0.0188749972730875, -0.01123634073883295, 0.03705615550279617, -0.02326931245625019, -0.006713537033647299, 0.010086366906762123, -0.018695112317800522, 0.0035045305266976357, -0.009386102668941021, -0.006270250771194696, -0.012052244506776333, -0.02383466251194477, -0.00600363640114665, -0.010626018978655338, 0.028447408229112625, -0.019864359870553017, -0.0044296495616436005, 0.006157822906970978, -0.01160895824432373, 0.021945877000689507, -0.016497954726219177, 0.014506379142403603, 0.02583908662199974, -0.0004408770182635635, 0.014287948608398438, 0.013337131589651108, -0.006517591420561075, 0.00439110305160284, 0.010979363694787025, 0.029757993295788765, -0.013992424122989178, -0.013619806617498398, 0.007291736081242561, 0.0038129035383462906, -0.005181308835744858, -0.0003633822198025882, 0.031454045325517654, -0.014853298664093018, -0.007664353586733341, 0.015123125165700912, -0.016061093658208847, 0.005929755512624979, 0.004561350680887699, 0.030117761343717575, -0.029269736260175705, -0.020789479836821556, 0.020506802946329117, -0.007934180088341236, -0.016099639236927032, -0.008833601139485836, -0.023127974942326546]"
City Hunter: Shinjuku Private Eyes,2590987,2019-05-28,Reuben Baron,,fresh,"The choreography is so precise and lifelike at points one might wonder whether the movie was rotoscoped, but no live-action reference footage was used. The quality is due to the skill of the animators and Kodama's love for professional wrestling.","[-0.006635915022343397, -0.023613516241312027, -0.021492144092917442, -0.019940892234444618, 0.01454465277493, 0.009115267544984818, -0.022433502599596977, -0.023812394589185715, 0.0074049122631549835, -0.021425852552056313, 0.02529735490679741, -0.0028257330413907766, 0.0385294072329998, -0.019688978791236877, -0.0017617327393963933, -0.00715299928560853, 0.0338093563914299, 0.0065563637763261795, 0.008299865759909153, -0.02529735490679741, -0.0008874956401996315, 0.007477834355086088, -0.018283570185303688, -0.021863384172320366, -0.01833660528063774, 0.007438058499246836, 0.024011272937059402, -0.02679557353258133, -0.0018661438953131437, -0.027445243671536446, 0.0069938963279128075, -0.027312656864523888, 0.0054227556101977825, -0.025655336678028107, -0.020046960562467575, -0.03099854104220867, -0.006828164216130972, -0.02695467509329319, -0.0010913461446762085, 0.0035234654787927866, 0.008810320869088173, 0.009924041107296944, -0.011508439667522907, -0.005180786829441786, -0.00703367218375206, 0.005310058128088713, -0.005833771545439959, 0.0009786483133211732, -0.014266222715377808, 0.021319782361388206, 0.0026450851000845432, 0.022380469366908073, -0.013106098398566246, -0.018482448533177376, 0.003447228576987982, -0.002650056965649128, 0.009440102614462376, -0.018681326881051064, 0.03587769344449043, -0.019702237099409103, -0.004481397103518248, 0.006602768786251545, -0.0012214458547532558, -0.025416681542992592, -0.010401349514722824, -0.007530868519097567, -0.023308569565415382, 0.0002796729968395084, -0.0024362625554203987, -0.019821563735604286, 0.01785929501056671, 0.0006496700225397944, 0.017024006694555283, 0.010620116256177425, 0.02497914806008339, -0.019927633926272392, -0.012482944875955582, -0.01203878317028284, 0.007099965121597052, 0.008962794207036495, 0.006364114582538605, -0.004063752014189959, 0.044893521815538406, 0.044098008424043655, 0.02185012586414814, 0.004683590494096279, -0.012476315721869469, 0.012940365821123123, 0.0188536886125803, 0.012065299786627293, 0.02053752727806568, 0.029752233996987343, 0.030547749251127243, 0.006755242124199867, -0.020206063985824585, -0.00615529203787446, -0.0006600282504223287, 0.002489296719431877, -0.026755796745419502, -0.028532445430755615, -0.012575754895806313, 0.028346825391054153, -0.0027992159593850374, -0.0010946608381345868, -0.024130599573254585, -0.019370773807168007, 0.018734361976385117, -0.0011965860612690449, 0.022446760907769203, -0.005903379060328007, -0.014876116998493671, 0.00969864521175623, -0.00202193227596581, -0.025920506566762924, -0.02137281745672226, 0.00491230096668005, 0.03487004339694977, 0.012502833269536495, -0.013006658293306828, -0.018747620284557343, 0.0050415717996656895, 0.0322713628411293, 0.025748146697878838, -0.004295777063816786, 0.031847089529037476, 0.005426070187240839, -0.017435021698474884, 0.004199652466922998, 0.019914373755455017, -0.02150540240108967, 0.036248933523893356, -0.004299091640859842, 0.012562496587634087, 0.00163246167358011, -0.003838356351479888, 0.0165201798081398, -0.015074996277689934, 0.005873547401279211, -0.010461012832820415, -0.013762397691607475, 0.027789965271949768, -0.004590780474245548, -0.0243692547082901, 0.0025589042343199253, -0.010235616937279701, -0.007835815660655499, 0.03237743303179741, 0.023878687992691994, 0.014040826819837093, 0.0003851200744975358, 0.023865429684519768, -0.02768389694392681, 0.028346825391054153, 0.03415407985448837, 0.014107120223343372, -0.008187168277800083, 0.02216833084821701, 0.011621138080954552, -0.015751183032989502, -0.041101571172475815, 0.008127504028379917, 0.011992378160357475, -0.0165201798081398, -0.016162198036909103, -0.005737646948546171, 0.011760353110730648, 0.015592080540955067, 0.0025837640278041363, -0.0013921500649303198, -0.007796040270477533, 0.014345774427056313, 0.02488633804023266, -0.021359559148550034, 0.02214181423187256, -0.018164243549108505, -0.010732813738286495, -0.0021777204237878323, 0.005638207774609327, -0.03155539929866791, -0.0014932466438040137, 0.03301384299993515, -0.004932188428938389, 0.030282577499747276, 0.017660416662693024, -0.007159628439694643, 0.0016664366703480482, 0.02248653769493103, -0.010348315350711346, 0.004239428322762251, 0.002973234746605158, -0.002787614706903696, 0.025668594986200333, -0.019529875367879868, -0.017024006694555283, -0.6376842856407166, -0.04579510539770126, 0.023905204609036446, -0.027259623631834984, 0.03966964781284332, 0.022406985983252525, 0.008598183281719685, -0.005684612784534693, 0.0025274152867496014, -0.004584151320159435, 0.014093861915171146, 0.009725161828100681, 0.021770574152469635, -0.02609286829829216, -0.010991355404257774, -0.011475293897092342, 0.01484960038214922, -0.04266608506441116, -0.005124438088387251, 0.0015860566636547446, -0.023944979533553123, 0.01065326202660799, -0.027551311999559402, -0.0028505928348749876, -0.020153028890490532, -0.014252964407205582, -0.0022473279386758804, -0.01626826822757721, 0.004352126270532608, 0.04250698164105415, -0.03619590029120445, 0.03823772072792053, -0.0011195206316187978, 0.01089191623032093, 0.046298932284116745, -0.025178028270602226, -0.033252496272325516, 0.04905671626329422, 0.008173909038305283, 0.04449576511979103, -0.041870567947626114, -0.02418363466858864, 0.010533935390412807, 0.008750657550990582, -0.003990829922258854, -0.006098942831158638, 0.01865481026470661, -0.016957713291049004, -0.003848300315439701, -0.01831008680164814, -0.002724636346101761, -0.02226114086806774, 0.024952631443738937, 0.011627767235040665, -0.006625971291214228, -0.004196337889879942, 0.00891638919711113, 0.010255505330860615, 0.009566059336066246, -0.010487530380487442, 0.009307517670094967, 0.001998729771003127, -0.0018810598412528634, -0.01470375619828701, -0.021929677575826645, 0.012158109806478024, -0.00843908078968525, 0.009513025172054768, -0.017806261777877808, -0.01856200024485588, 0.027060745283961296, 0.019543133676052094, -0.03542690351605415, 0.004454880021512508, -0.015287132933735847, 0.03224484622478485, 0.03569207340478897, -0.013788914307951927, 0.012482944875955582, -0.014743531122803688, -0.011859792284667492, -0.007636937312781811, -0.022473279386758804, -0.020723147317767143, 0.003609646111726761, 0.006927603855729103, -0.02781648375093937, 0.006258045788854361, 0.017342211678624153, -0.013404415920376778, -0.012887331657111645, 0.004033920355141163, -0.011932714842259884, -0.025178028270602226, -0.004381957929581404, 0.023069914430379868, -0.005339889787137508, 0.03017650917172432, 0.02829379215836525, -0.04229484498500824, -0.015114771202206612, -0.00256719090975821, 0.023547222837805748, -0.006277933716773987, -0.010056626982986927, 0.017872555181384087, -0.035108696669340134, -0.0028406488709151745, 0.028028620406985283, 0.014796566218137741, 0.007524239365011454, -0.0063077653758227825, 0.0006662431987933815, -0.013709362596273422, -0.006354170385748148, -0.028665032237768173, 0.0017219569999724627, 0.022791484370827675, 0.017580866813659668, -0.0165201798081398, 0.004736624658107758, -0.022539570927619934, 0.006509958766400814, 0.0050482009537518024, -0.008797062560915947, -0.00043794719385914505, -0.013815431855618954, 0.00751098059117794, -0.008810320869088173, 0.022406985983252525, 0.011283044703304768, 0.0036427925806492567, 0.013550260104238987, -0.02057730220258236, 0.008545149117708206, 0.004584151320159435, 0.01344419177621603, 0.008193797431886196, 0.009638981893658638, -0.020815957337617874, -0.01671905815601349, 0.006814905907958746, 0.01028865110129118, -0.015128030441701412, -0.011044390499591827, -0.031157642602920532, -0.02226114086806774, 0.01706378161907196, 0.00665911752730608, 0.029937854036688805, -0.002600337378680706, 0.01853548362851143, 0.0031638266518712044, 0.0231627244502306, 0.007862333208322525, 0.005608375649899244, -0.022155072540044785, -0.0010656577069312334, 0.010003591887652874, -0.01597657799720764, 0.04245394468307495, -0.00036999702570028603, -0.04009392112493515, 0.010991355404257774, 0.012509462423622608, -0.015737924724817276, 0.005051515996456146, 0.0058404006995260715, -0.020789440721273422, -0.038449857383966446, 0.0069740088656544685, -0.012681824155151844, -0.001122835325077176, 0.029460545629262924, 0.019569652155041695, 0.024952631443738937, 0.0016241749981418252, 0.008982682600617409, -0.0025986800901591778, -0.02858548052608967, 0.004050493706017733, -0.004494655877351761, -0.015804218128323555, -0.04152584448456764, 0.02427644468843937, 0.013749138452112675, 0.019410548731684685, 0.0013979506911709905, 0.0021976083517074585, 0.002046792069450021, -0.016612989827990532, 0.014027568511664867, 0.006234843283891678, -0.005595117341727018, 0.03550645336508751, -0.012118333950638771, 0.007438058499246836, 0.010182582773268223, 0.013324864208698273, 0.024170376360416412, 0.04210922494530678, -0.010693037882447243, 0.0011153772938996553, -0.01307958085089922, -0.006437036674469709, -0.03508218005299568, 0.00667569087818265, -0.023931721225380898, 0.028983237221837044, -0.005449272692203522, -0.0030130103696137667, -0.0024743808899074793, 0.005750905256718397, 0.012522720731794834, 0.010997985489666462, 0.017368728294968605, -0.007073448039591312, 0.01579095795750618, -0.017647158354520798, 0.00963235180824995, 0.004481397103518248, -0.02293732948601246, 0.027312656864523888, -0.018906723707914352, 0.007855704054236412, 0.013961276039481163, 0.002242355840280652, 0.013391157612204552, 0.010553822852671146, 0.01776648499071598, -0.02600005827844143, 0.020365165546536446, -0.023361602798104286, 0.019954150542616844, -0.005992874503135681, -0.020232580602169037, -0.0017965364968404174, -0.00491230096668005, 0.028638513758778572, 0.0030312410090118647, 0.010706296190619469, 0.010759331285953522, 0.01194597315043211, -0.02200922928750515, 0.018615035340189934, -0.009420215152204037, 0.036832310259342194, -0.007537498138844967, -0.01690467819571495, -0.00790873821824789, -0.011720577254891396, 0.000551888020709157, -0.02226114086806774, 0.01502196118235588, 0.009924041107296944, -0.018005140125751495, 0.0054592168889939785, -0.001529707689769566, 0.03391542658209801, 0.03555949032306671, -0.007060189265757799, 0.03113112598657608, 0.01808469183743, 0.003137309569865465, -0.004630556330084801, -0.010938321240246296, 0.00202193227596581, -0.00928100012242794, -0.021293265745043755, 0.005727702751755714, -0.0033096708357334137, -0.00010026794916484505, 0.0007126482087187469, -0.02312294952571392, 5.6607885198900476e-05, 0.005194045603275299, -0.0033179575111716986, -0.0020418199710547924, -0.0028389915823936462, 0.02654366008937359, -0.005989559926092625, -0.050541676580905914, 0.02296384610235691, 0.006337597034871578, -0.007080077193677425, -0.017965365201234818, -0.02858548052608967, -0.028983237221837044, -0.012025524862110615, 0.016148939728736877, -0.010335056111216545, 0.029009753838181496, -0.006122145336121321, 0.003162169363349676, -0.014292740263044834, 0.009950557723641396, 0.027259623631834984, -0.025058699771761894, 0.0074115414172410965, -0.03707096725702286, -0.008193797431886196, 0.007597161456942558, 0.007099965121597052, -0.02073640562593937, 0.024263186380267143, -0.017395246773958206, 0.01290058996528387, -0.007239180151373148, -0.005107864737510681, -0.003934481181204319, 0.03205922618508339, -0.014478360302746296, -0.01626826822757721, 0.01967572048306465, 0.012164738960564137, -0.016599731519818306, -0.028744583949446678, -0.009645611047744751, 0.015751183032989502, -0.012257548980414867, -0.03431318327784538, -0.009771566838026047, -0.007497722283005714, -0.01484960038214922, 0.1069701537489891, 0.016467146575450897, 0.014425326138734818, 0.0021362872794270515, -0.012980141676962376, -0.003170456038787961, -0.007849073968827724, -0.024037789553403854, -0.006828164216130972, 0.021571695804595947, -0.004501285031437874, -0.01305969338864088, 0.004289147909730673, -0.0005887634470127523, 0.0025522750802338123, -0.031502366065979004, 0.0021810350008308887, -0.009042345918715, 0.00107062968891114, 0.0005224705673754215, -0.008359529078006744, 0.018296828493475914, 0.022062262520194054, 0.013086210004985332, 0.004057122860103846, -0.014796566218137741, 0.013371269218623638, 0.014770048670470715, 0.00365273654460907, -0.024873079732060432, 0.018495706841349602, -0.021094387397170067, -0.01004999689757824, 0.0011394084431231022, -0.02504544146358967, 0.012628789059817791, 0.027869516983628273, 0.01878739520907402, 0.016347818076610565, -0.006311079952865839, -0.010699667036533356, 0.02114742249250412, 0.026013316586613655, -0.0034008235670626163, 0.014425326138734818, -0.03476397320628166, -0.019092343747615814, 0.030070440843701363, -0.0016755519900470972, -0.01996740885078907, 0.022950587794184685, 0.008193797431886196, -0.01207192987203598, -0.005190730560570955, -0.009950557723641396, -0.005021683871746063, -0.021664505824446678, -0.002462779637426138, 0.014982186257839203, 0.020497752353549004, 0.002217496046796441, -0.03426015004515648, -0.007603790611028671, 0.003762119682505727, -0.01888020522892475, -0.028081653639674187, -0.018363121896982193, -0.010109661146998405, 0.0035632411018013954, 0.00014170097711030394, -0.017249401658773422, -0.01706378161907196, -0.01869458518922329, -0.040783364325761795, 0.027789965271949768, -0.001707041054032743, 0.006881198845803738, -0.035904210060834885, 0.000586277456022799, 0.009592576883733273, -0.009208077564835548, -0.008558408357203007, -0.017275918275117874, -0.011587991379201412, -0.01665276661515236, 0.02430296130478382, 0.004855951759964228, -0.009440102614462376, 0.0060956282541155815, 0.011375854723155499, 0.032907772809267044, 0.010189211927354336, 0.013477337546646595, 0.015592080540955067, 0.011409000493586063, 0.0006803304422646761, 0.03033561259508133, 0.03399497643113136, 0.016095906496047974, -0.004627241287380457, 0.0017285862704738975, -0.03720355033874512, 0.0004913958255201578, 0.0345783531665802, -0.0100301094353199, -0.027577828615903854, -0.000561417662538588, 0.013417674228549004, -0.0076104202307760715, -0.023971498012542725, -0.01579095795750618, -0.01421318855136633, -0.014889376237988472, -0.031528882682323456, 0.024793528020381927, 0.014823082834482193, 0.0014965612208470702, 0.027630863711237907, 0.008014806546270847, 0.014266222715377808, 0.014557912014424801, -0.018959756940603256, 0.011680801399052143, 0.0393514409661293, 0.0004938818165101111, -0.013537001796066761, 0.022950587794184685, 0.0008568351622670889, -0.018349863588809967, 0.010772589594125748, -0.0016415768768638372, 0.020961802452802658, 0.01967572048306465, -0.015432977117598057, -0.021067870780825615, -0.016891419887542725, -0.003990829922258854, 0.015273874625563622, 0.005455902311950922, -0.009871006943285465, -0.015287132933735847, 0.016281526535749435, 0.02752479538321495, -0.032960809767246246, 0.0006745298160240054, -0.019251445308327675, -0.0080545824021101, 0.010931692086160183, -0.002452835673466325, 0.008478856645524502, 0.00017236142593901604, 0.007935254834592342, -0.006112201604992151, -0.00012657792831305414, 0.017209626734256744, -0.018416155129671097, -0.025602301582694054, -0.023865429684519768, 0.0032052595634013414, 0.008492114953696728, 0.04433666169643402, 0.013696104288101196, 0.00219263625331223, 0.010507417842745781, -0.01722288504242897, -0.00940695684403181, -0.0043554408475756645, 0.011541586369276047, -0.04937491938471794, 0.019185153767466545, 0.01585725136101246, 0.005505621898919344, -0.034180596470832825, -0.01951661705970764, -0.00939369760453701, 0.0028489355463534594, -0.012993399985134602, -0.007709859404712915, 0.003440599422901869, -0.013709362596273422, 0.013497225940227509, -0.0011286359513178468, 0.0008725797524675727, -0.01629478484392166, 0.014319256879389286, -0.0004101870581507683, 0.01633455976843834, 0.010838882066309452, -0.002336823148652911, -0.017024006694555283, 0.027445243671536446, 0.017077039927244186, -0.024647684767842293, -0.011342708021402359, 0.023308569565415382, -0.008624700829386711, -0.0022887608502060175, -0.02060382068157196, 0.03916582092642784, 0.007981659844517708, -0.0021893216762691736, 0.006049223244190216, 0.008525261655449867, -0.0034008235670626163, -0.006848052144050598, 0.027418725192546844, -0.004358755424618721, -0.034949593245983124, -6.541240873048082e-05, -0.012403394095599651, -0.0401204377412796, -0.0392453707754612, 0.010633374564349651, -0.01665276661515236, -0.03179405629634857, 0.016188716515898705, -0.019569652155041695, 0.02679557353258133, 0.007285585161298513, -0.022049004212021828, 0.046590618789196014, -0.00918819010257721, 0.025217803195118904, -0.00037351882201619446, 0.007796040270477533, 0.005104550160467625, -0.003127365605905652, -0.011621138080954552, 0.002235726686194539, -0.01958291046321392, -0.010394720360636711, 0.00288705388084054, 0.026305006816983223, -0.013908241875469685, -0.006679005455225706, -0.005943154916167259, -0.004839378409087658, -0.06486093252897263, -0.03288125619292259, 0.017819520086050034, 0.008929647505283356, 0.01626826822757721, -0.005532138980925083, 0.0001102118767448701, -0.0015520815504714847, 0.018906723707914352, -0.057489167898893356, 0.026106126606464386, -0.005797310266643763, 0.0022920756600797176, -0.017686935141682625, -0.016029613092541695, -0.038768064230680466, 0.0017037264769896865, -0.011203492991626263, -0.02659669518470764, -0.0028356770053505898, -0.005860288627445698, -0.022049004212021828, 0.008624700829386711, -0.009738421067595482, 0.008777174167335033, -0.004517858382314444, 0.0035632411018013954, 0.02650388516485691, 0.014107120223343372, -0.0037853221874684095, 0.0015694834291934967, 0.011541586369276047, 0.031661469489336014, -0.004365384578704834, 0.0107991062104702, -0.004126730374991894, -0.0007822557236067951, 0.014001051895320415, 0.0038449857383966446, -0.009380439296364784, 0.007385024335235357, -0.007855704054236412, 0.031025057658553123, 0.017594125121831894, 0.0030030664056539536, 0.01773996837437153, -0.007358507253229618, -0.017726710066199303, -0.000679916120134294, 0.00877054501324892, -0.012608901597559452, -0.0017700192984193563, -0.051814496517181396, -0.004690219648182392, 0.012940365821123123, 0.0013109412975609303, 0.004388587083667517, 0.00679501798003912, 0.010772589594125748, 0.007577273529022932, 0.02682209014892578, -0.026689505204558372, -0.008306494913995266, 0.004030605778098106, -0.00047192227793857455, 0.001985470997169614, -0.023878687992691994, -0.010606857016682625, -0.02012651227414608, 0.022605864331126213, -0.007438058499246836, -0.028081653639674187, -0.002727951155975461, -0.005313372705131769, -0.0031041631009429693, 0.005886805709451437, -0.018137725070118904, -0.02484656311571598, -0.0006310251192189753, 0.00226058647967875, -0.031820572912693024, 0.0012877387925982475, -0.0065563637763261795, 0.01967572048306465, 0.01565837301313877, 0.012370247393846512, -0.012403394095599651, 0.00975830852985382, 0.013139244168996811, 0.0027909292839467525, -0.014557912014424801, -0.011064277961850166, -0.012124964036047459, -0.00024176176520995796, 0.007371765561401844, -0.02309643104672432, -0.03744220733642578, -0.01815098524093628, 0.00991741195321083, -0.0005477447411976755, 0.038423340767621994, -0.012025524862110615, -0.029195373877882957, 0.02146562747657299, 0.040465161204338074, -0.010580340400338173, 0.02702096849679947, -0.008876613341271877, -0.035930730402469635, 0.021028093993663788, -0.0354003868997097, -0.01649366319179535, 0.0018462560838088393, -0.022473279386758804, 0.018230535089969635, 0.00930088758468628, -0.019728753715753555, -0.03479049354791641, -0.0018628293182700872, -0.030229542404413223, -0.02098831906914711, -0.023746101185679436, -0.004733310081064701, 0.00679501798003912, 0.0027163499034941196, 0.019940892234444618, 0.0037090852856636047, -0.022526312619447708, 0.00945999100804329, 0.002015302889049053, -0.024833304807543755, 0.020868992432951927, -0.019317738711833954, 0.016056129708886147, 0.024767011404037476, -0.009771566838026047, -0.021173939108848572, 0.009705274365842342, 0.021478885784745216, 0.023613516241312027, 0.007769522722810507, -0.02893020398914814, -0.009201448410749435, -0.015737924724817276, 0.021187197417020798, -0.00039879296673461795, 0.0026550290640443563, 0.013185649178922176, -0.05547386407852173, 0.009526283480226994, 0.003203602274879813, 0.020590562373399734, -0.011110682971775532, 0.003424026072025299, 0.018866946920752525, 0.006967379245907068, 0.004693534225225449, -0.015936803072690964, -0.007345248479396105, -0.01105101965367794, -0.011899568140506744, 0.025191286578774452, 0.013855207711458206, -0.004564263392239809, 0.03786648064851761, 0.011276415549218655, -0.01690467819571495, -0.009605835191905499, -0.007570644374936819, -0.01170731894671917, -0.029805269092321396, -0.010122919455170631, 0.0025970228016376495, 0.00808772910386324, -0.005097920540720224, 0.02625197172164917, -0.013841948471963406, -0.0011634397087618709, -0.0007689971243962646, 0.029646165668964386, -0.016440628096461296, 0.031687986105680466, -0.0034870044328272343, -0.01824379526078701, -0.006374058313667774, -0.02509847655892372, 0.0017252715770155191, -0.007484463509172201, -0.01152832806110382, -0.020564043894410133, -0.011442147195339203, -0.022698674350976944, -0.011064277961850166, -0.030282577499747276, -0.005757534876465797, 0.002658343641087413, -0.019980667158961296, -0.028187723830342293, 0.011813387274742126, 0.20619730651378632, -0.014054086059331894, -0.021346300840377808, 0.024740494787693024, -0.013006658293306828, 0.015936803072690964, 0.006380687467753887, -0.005243765190243721, -0.021969452500343323, 0.006708837114274502, -0.006466868333518505, 0.013404415920376778, 0.005641522351652384, -0.008134134113788605, 0.013576777651906013, -0.02972571738064289, -0.007219292223453522, 0.000594564073253423, 0.00900919921696186, -0.03566555678844452, 0.014186671935021877, -0.004488026257604361, 0.012124964036047459, -0.009327405132353306, 0.012529349885880947, -0.0007466233219020069, -0.005187415983527899, 0.016162198036909103, 0.0017617327393963933, 0.011256527155637741, -0.011355966329574585, -0.00888324249535799, 0.002079938305541873, -0.0021793777123093605, -0.002557246945798397, -0.0072789560072124004, -0.0005162556190043688, 0.004918930120766163, 0.027551311999559402, 0.00047357959556393325, 0.015008702874183655, 0.003314642934128642, 0.03033561259508133, -0.015300391241908073, 0.006195067428052425, 0.009234595112502575, -0.0036494217347353697, -0.009685386903584003, -0.006927603855729103, 0.02781648375093937, -0.03662017360329628, -0.02009999379515648, 0.03253653645515442, 0.01667928323149681, -0.013145873323082924, 0.00300969579257071, 0.0038018953055143356, -0.003016324946656823, 0.0015081624733284116, 0.02421015128493309, -0.012138222344219685, 0.01446510199457407, -0.015499270521104336, 0.004494655877351761, -0.04367373511195183, 0.00047440826892852783, 0.003960998263210058, 0.0008568351622670889, 0.0298848208039999, -0.024965889751911163, -0.0015835706144571304, -0.03805210068821907, -0.009433473460376263, -0.020855732262134552, -0.012787892483174801, -0.025695111602544785, 0.008724140003323555, 0.016069388017058372, 0.027153555303812027, 0.02223462425172329, -0.004395216703414917, -0.016573214903473854, -0.007040301337838173, -0.02332182787358761, -0.012635419145226479, 0.004958705976605415, 0.01949010044336319, 0.00244786380790174, 0.0048360638320446014, -0.01284092664718628, 0.009831231087446213, -0.029115824028849602, -0.006695578806102276, -0.0015098198782652617, 0.012290695682168007, 0.004922244697809219, 0.024170376360416412, 0.016308043152093887, -0.01595006138086319, -0.010242246091365814, -0.004020662046968937, -0.02414385974407196, 0.007358507253229618, 0.004328923765569925, -0.0007068475824780762, 0.012237661518156528, 0.0007466233219020069, 0.015393201261758804, 0.010606857016682625, -0.025204544886946678, 0.026901641860604286, -0.027896035462617874, 0.015061737038195133, -0.013961276039481163, 0.013291718438267708, 0.009910781867802143, -0.015552304685115814, -0.015313650481402874, 0.0021744058467447758, -0.01693119667470455, 0.00816727988421917, -0.0030610726680606604, -0.012880702503025532, 0.002378256293013692, 0.02488633804023266, -0.03471093997359276, -0.0204182006418705, -0.009373810142278671, -0.011899568140506744, -0.025602301582694054, 0.010911804623901844, -0.002089882269501686, 0.016069388017058372, -0.01130956131964922, -0.010401349514722824, 0.004922244697809219, 0.005561970639973879, -0.0016299756243824959, -0.008671105839312077, 0.0064768120646476746, 0.012529349885880947, 0.021863384172320366, 0.02194293588399887, 0.0015446236357092857, 0.007743005640804768, -0.036991413682699203, 0.0015139630995690823, 0.01331823505461216, -0.022592606022953987, -0.023149466142058372, -0.006861310917884111, 0.002240698551759124, -0.003791951574385166, 0.008744028396904469, 0.023109689354896545, -0.02143911086022854, -0.009645611047744751, -0.020206063985824585, -0.01978178881108761, 0.015220840461552143, -0.05176146328449249, 0.0021445739548653364, 0.012396764010190964, -0.0060956282541155815, -0.01831008680164814, -0.00766345439478755, -0.16790655255317688, -0.004004088696092367, 0.015499270521104336, -0.0565875843167305, 0.02720658853650093, -0.006695578806102276, 0.0098246019333601, 0.0029583186842501163, -0.0069938963279128075, -0.01808469183743, -0.0016216890653595328, 0.030892470851540565, -0.03083943761885166, -0.010374831967055798, -0.002225782722234726, 0.012244290672242641, -0.007849073968827724, -0.0011576390825212002, 0.03415407985448837, 0.008386046625673771, 0.028691548854112625, 0.012337100692093372, 0.0009281000238843262, 0.007000525947660208, 0.0231627244502306, 0.005137696396559477, -0.0014054086059331894, -0.014292740263044834, 0.02350744791328907, -0.02248653769493103, -0.019132118672132492, -0.007172887213528156, -0.0009214706951752305, 0.023083172738552094, 0.020802699029445648, 0.007882220670580864, 0.00789547897875309, 0.01805817522108555, -0.029195373877882957, 0.017183108255267143, -0.004481397103518248, 0.014014310203492641, -0.0030130103696137667, -0.00865784753113985, 0.0298583023250103, 0.027896035462617874, 0.015910286456346512, 0.016506921499967575, 0.011143829673528671, -0.016798609867691994, 0.005697871092706919, -0.0330403596162796, 0.011269785463809967, 0.016281526535749435, 0.011362595483660698, 0.016082648187875748, 0.026716021820902824, 0.02816120535135269, -0.023852169513702393, -0.012608901597559452, -0.005230506416410208, -0.018774136900901794, 0.019569652155041695, -0.026583436876535416, -0.019993925467133522, 0.012754745781421661, -0.0026235398836433887, -0.004981908481568098, -0.006221584510058165, -0.004584151320159435, -0.0004951247829012573, 0.017408505082130432, -0.023109689354896545, -0.005681297741830349, 0.003500262973830104, -0.000934729294385761, -0.025761405006051064, 0.009141785092651844, 0.01613568142056465, -0.014650722034275532, -0.033093392848968506, 0.03993481770157814, -0.022990362718701363, -0.024859821423888206, 0.012396764010190964, 0.0058901202864944935, -0.003533409209921956, -0.000267864583292976, -0.020497752353549004, 0.004378643352538347, 0.024130599573254585, -0.015737924724817276, -0.0007470376440323889, -0.010169324465095997, -0.0050283134914934635, 0.014571170322597027, -0.002046792069450021, -0.00627461913973093, -0.003748861141502857, 0.003941110335290432, 0.0036328486166894436, -0.01706378161907196, -0.01690467819571495, 0.02210203930735588, 0.02545645833015442, 0.0416584312915802, -0.0012280752416700125, 0.015764441341161728, 0.03441925346851349, -0.009877636097371578, -0.013304976746439934, 0.013450820930302143, 0.012350359000265598, 0.01254923827946186, 0.007709859404712915, 0.027392208576202393, 0.026490626856684685, 0.008207055740058422, 0.020166287198662758, -0.007285585161298513, 0.05913322791457176, 0.006214955355972052, -0.02733917534351349, 0.003831727197393775, -0.015525787137448788, -0.02704748511314392, -0.09938625246286392, 0.012383505702018738, -0.00798828899860382, 0.0385294072329998, -0.029911337420344353, 0.018455931916832924, -0.00579068111255765, 0.021425852552056313, -0.004063752014189959, 0.007902109064161777, -0.005366406869143248, -0.011123941279947758, 0.010368202812969685, -0.00880369171500206, 0.01164102554321289, 0.015897028148174286, -0.01077921874821186, -0.014730272814631462, 0.008008177392184734, 0.017779745161533356, -0.0011004614643752575, 0.004908985923975706, -0.0002747010439634323, -0.0034936335869133472, -0.008173909038305283, 0.014650722034275532, -0.02922189235687256, 0.010401349514722824, -0.0031986304093152285, 0.013000029139220715, 0.015804218128323555, -0.009400327689945698, 0.0329873263835907, -0.0330403596162796, -0.008246831595897675, 0.00841919332742691, -0.02956661395728588, -0.004030605778098106, 0.0173156950622797, -0.026623211801052094, -0.004166506230831146, 0.004746568389236927, -0.011999007314443588, -0.008014806546270847, -3.376792301423848e-05, -0.012284066528081894, 0.016825126484036446, 0.0223937276750803, -0.015552304685115814, -0.007709859404712915, -0.029009753838181496, 0.003467116504907608, -0.015194322913885117, -0.0076104202307760715, 0.04733309894800186, 0.01406734436750412, 0.023335086181759834, -0.002275502309203148, -0.010162695311009884, 0.01783277839422226, -0.01293373666703701, -0.005064774304628372, -0.0038549297023564577, 0.03752175718545914, 0.004507914185523987, -0.006281248293817043, -0.018588516861200333, -0.03444577008485794, 0.01674557663500309, 0.00638731662184, -0.011203492991626263, 0.02532387152314186, -0.010818994604051113, -0.011727206408977509, -0.012555867433547974, -0.006493385415524244, -0.03362373635172844, -0.01990111544728279, 0.02321575954556465, 0.001122835325077176, 0.0072789560072124004, -0.02688838355243206, 0.0306538175791502, -0.02108112908899784, 0.0115813622251153, -0.011395742185413837, 0.003778692800551653, -0.010772589594125748, 0.00159682915546, -0.016281526535749435, -0.01269508246332407, 0.006745298393070698, 0.007312102243304253, -0.02137281745672226, 0.0019755272660404444, -0.0016970972064882517, -0.00465044379234314, -0.0015984865603968501, -0.019662462174892426, 0.0047730859369039536, -0.013125985860824585, -0.0313962958753109, -0.06045908480882645, -0.0010383118642494082, -0.0016390909440815449, -0.007670083548873663, 0.007577273529022932, -0.005542082712054253, 0.036063313484191895, 0.0007615392096340656, 0.016347818076610565, -0.012085188180208206, -0.02816120535135269, 0.0022042375057935715, 0.009400327689945698, -0.013841948471963406, -0.0188536886125803, -0.022340692579746246, 0.01626826822757721, -0.009910781867802143, 0.004816175904124975, 0.003203602274879813, -0.0010780876036733389, 0.011899568140506744, -0.007312102243304253, 0.024289702996611595, -0.006214955355972052, -0.0011153772938996553, 0.0003103334456682205, 0.03219181299209595, -0.015923544764518738, -0.009844489395618439, 0.014199930243194103, -0.02893020398914814, 0.015008702874183655, 0.020590562373399734, 0.002275502309203148, -0.004723366349935532, -0.0036560511216521263, -0.0029516895301640034, 0.01955639384686947, 0.027763448655605316, -0.02321575954556465, -0.01713007502257824, -0.008631329983472824, -0.010242246091365814, -0.0014642435126006603, -0.003457172540947795, -0.01715659163892269, -0.0010416265577077866, 0.018495706841349602, 0.024607907980680466, 0.0071861459873616695, 0.013868466019630432, 0.007497722283005714, -0.009486507624387741, 0.00742480019107461, -0.022022487595677376, 0.036567140370607376, -0.011873050592839718, 0.0028389915823936462, -0.004534431267529726, 0.021664505824446678, -0.020020443946123123, 0.0012181312777101994, -0.03343811631202698, 0.0020418199710547924, 0.020524268969893456, -0.021028093993663788, 0.01735546998679638, -0.000568875577300787, -0.016798609867691994, -0.036540623754262924, 0.022499796003103256, -0.009015828371047974, 0.016255008056759834, -0.009619093500077724, -0.008591554127633572, 0.010586969554424286, 0.009745050221681595, -0.022208107635378838, 0.007855704054236412, 0.012231032364070415, 0.016506921499967575, -0.052265290170907974, 0.023388119414448738, 0.017647158354520798, 0.01392150018364191, -0.013106098398566246, 0.031157642602920532, 0.004806232172995806, 0.024793528020381927, -0.029195373877882957, 0.013749138452112675, -0.0030909045599400997, 0.0215982124209404, -0.01430599857121706, 0.01878739520907402, -0.028214240446686745, -0.015406460501253605, 0.03455183655023575, 0.010441125370562077, -0.000705190293956548, -0.0026119386311620474, -0.011886309832334518, -0.030123474076390266, -0.010706296190619469, 0.014995444566011429, -0.028373343870043755, -0.03110460937023163, 0.017527831718325615, 0.010202471166849136, 0.04746568575501442, -0.02580117993056774, -0.00036336772609502077, -0.0035532971378415823, 0.014054086059331894, 0.0058470298536121845, -0.002369969617575407, -0.013125985860824585, 0.0028936832677572966, 0.04041212797164917, 0.024541616439819336, 0.026623211801052094, 0.03791951388120651, 0.0026367984246462584, 0.012582384049892426, -0.0005485733854584396, -0.009771566838026047, -0.009996962733566761, 0.01502196118235588, 0.0037853221874684095, 0.023361602798104286, 0.006894457153975964, -0.03691186383366585, 0.007013784255832434, -0.024342738091945648, -0.0021213714499026537, 0.010341686196625233, 0.028532445430755615, -0.03211225941777229, 0.05091291666030884, 0.01620197482407093, 0.019344255328178406, 0.021929677575826645, -0.02845289371907711, 0.014226446859538555, 0.004551004618406296, 0.0056779831647872925, -0.014624204486608505, -0.015114771202206612, 0.015578821301460266, -0.014385550282895565, 0.011170346289873123, 0.013271830044686794, -0.016082648187875748, 0.012065299786627293, 0.005329945590347052, 0.02398475632071495, 0.004259316250681877, -0.0247802697122097, 0.004454880021512508, 0.011448776349425316, 0.0021296581253409386, 0.020471233874559402, -0.008558408357203007, 0.012012265622615814, 0.03476397320628166, 0.019688978791236877, 0.014677238650619984, -0.006327653303742409, 0.02328205108642578, -0.018097950145602226, -0.01974201388657093, 0.0052404506132006645, 0.0054061827249825, 0.006009447388350964, -0.010885287076234818, 0.008889872580766678, -0.016785351559519768, 0.025536008179187775, 0.0008373616728931665, 0.011534957215189934, -0.014743531122803688, 0.0013946359977126122, 0.008001548238098621, 0.010931692086160183, -0.008631329983472824, -0.008611442521214485, -0.02720658853650093]"

Once the collection is created and populated, try the autodetect script given above, but check the following Note.

Note 1: in this case, you need to create the correct embedding, e.g.:

from langchain_openai import OpenAIEmbeddings
embedding = OpenAIEmbeddings(
    api_key=os.environ["OPENAI_API_KEY"],
    model="text-embedding-ada-002",
)

and then pass it as an additional argument (embedding=embedding) when creating ad_store in the script.

Note 2: if you leave content_field unspecified (or pass "*"), the store will try to guess the field
for the textual content. You may want to provide it explicitly (e.g. content_field="reviewtext" for the example CSV).

vectorize collection with imported CSV, "$vectorize" column

Create an empty collection with vectorize and upload a CSV with a column explicitly named "$vectorize". For example:

title,reviewid,creationdate,criticname,originalscore,reviewstate,$vectorize
Beavers,1145982,2003-05-23,Ivan M. Lincoln,3.5/4,fresh,"Timed to be just long enough for most youngsters' brief attention spans -- and it's packed with plenty of interesting activity, both on land and under the water."
Blood Mask,1636744,2007-06-02,The Foywonder,1/5,rotten,"It doesn't matter if a movie costs 300 million or only 300 dollars; good is good and bad is bad, and Bloodmask: The Possession of Nicole Lameroux is just plain bad."
City Hunter: Shinjuku Private Eyes,2590987,2019-05-28,Reuben Baron,,fresh,"The choreography is so precise and lifelike at points one might wonder whether the movie was rotoscoped, but no live-action reference footage was used. The quality is due to the skill of the animators and Kodama's love for professional wrestling."

Then you can simply run the autodetect mini script above as is.

vectorize collection with imported CSV, marked column

Create an empty collection with vectorize and upload a CSV with no "$vectorize" column.
During the import wizard, instead, mark one of the other columns as the one to vectorize.

In this example it would be "reviewtext":

title,reviewid,creationdate,criticname,originalscore,reviewstate,reviewtext
Beavers,1145982,2003-05-23,Ivan M. Lincoln,3.5/4,fresh,"Timed to be just long enough for most youngsters' brief attention spans -- and it's packed with plenty of interesting activity, both on land and under the water."
Blood Mask,1636744,2007-06-02,The Foywonder,1/5,rotten,"It doesn't matter if a movie costs 300 million or only 300 dollars; good is good and bad is bad, and Bloodmask: The Possession of Nicole Lameroux is just plain bad."
City Hunter: Shinjuku Private Eyes,2590987,2019-05-28,Reuben Baron,,fresh,"The choreography is so precise and lifelike at points one might wonder whether the movie was rotoscoped, but no live-action reference footage was used. The quality is due to the skill of the animators and Kodama's love for professional wrestling."

Then you can simply run the autodetect mini script above as is.

vectorize collection with PDF

Create an empty collection with vectorize and choose the PDF format in the Upload wizard.
(this option is available only for vectorize collections).

Then you can simply run the autodetect mini script above as is.