Vector search in elasticsearch

Photo by Mick Haupt on Unsplash

Vector search in elasticsearch

·

41 min read

Take on how lucene can win the vector database race. There are few reason why this might happen

  • Pure vector search doesn't work well. Need hybride solutions like 1. HNSW+Inverted index or 2. SPLADE ++

  • Humonguous Installed base so reduced friction and retaining existing infrastructure.

How Chatgpt alone cannot solve entire information retrieval problem

As mentioned here some of the already existing system helps chatgpt in effeciently solving many problems:

Implementation

There are 3 steps:

  1. Create an index

  2. Ingest Data into the index

  3. Search Index.

"type": "dense_vector", "dims": is the dimension eg: 512

Mapping

PUT /ecommerce
{
  "mappings": {
    "properties":
    {
      "title":{"type": "text"},
      "description":{"type":  "text" },
      "seller" : {"type": "text"},
      "discount": {"type": "text"},

      "brand": {"type": "keyword"},
      "category" : {"type": "keyword"},
      "pid": {"type": "keyword"},
      "sub_category": {"type": "keyword"},


      "actual_price": {"type": "float"},
      "average_rating" : {"type": "float"},
      "seller_price" : {"type": "float"},

      "out_of_stock": {"type": "boolean"},

      "crawled_at": {"type": "date", "format": ["dd-mm-yyyy HH:MM:SS"]  },


      "title_vector": {"type":"dense_vector", "dims": 384, "index": true, "similarity": "l2_norm"},

      "description_vector" : {"type":"dense_vector", "dims": 384, "index": true, "similarity": "l2_norm"}

    } 
  }
}
  1. Ingest data to Index
POST /ecommerce/_bulk?refresh=true
{"index": {"_id": "fa8e22d6-c0b6-5229-bb9e-ad52eda39a0a"}}
{"actual_price": "2999", "average_rating": "3.9", "brand": "York", "category": "Clothing and Accessories", "crawled_at": "10-02-2021 20:11:51", "description": "Yorker trackpants made from 100% rich combed cotton giving it a rich look.Designed for Comfort,Skin friendly fabric,itch-free waistband & great for all year round use Proudly made in India", "discount": "69% off", "images": ["https://rukminim1.flixcart.com/image/128/128/jr3t5e80/track-pant/z/y/n/m-1005combo2-yorker-original-imafczg3xfh5qqd4.jpeg?q=70", "https://rukminim1.flixcart.com/image/128/128/jr58l8w0/track-pant/w/d/a/l-1005combo8-yorker-original-imafczg3pgtxgraq.jpeg?q=70"], "out_of_stock": false, "pid": "TKPFCZ9EA7H5FYZH", "product_details": [{"Style Code": "1005COMBO2"}, {"Closure": "Elastic"}, {"Pockets": "Side Pockets"}, {"Fabric": "Cotton Blend"}, {"Pattern": "Solid"}, {"Color": "Multicolor"}], "seller": "Shyam Enterprises", "selling_price": "921", "sub_category": "Bottomwear", "title": "Solid Men Multicolor Track Pants", "url": "https://www.flipkart.com/yorker-solid-men-multicolor-track-pants/p/itmd2c76aadce459?pid=TKPFCZ9EA7H5FYZH&lid=LSTTKPFCZ9EA7H5FYZHVYXWP0&marketplace=FLIPKART&srno=b_1_1&otracker=browse&fm=organic&iid=177a46eb-d053-4732-b3de-fcad6ff59cbd.TKPFCZ9EA7H5FYZH.SEARCH&ssid=utkd4t3gb40000001612415717799", "title_vector": [-0.01750304363667965, -0.011636498384177685, -0.02210037223994732, 0.01183471828699112, -0.021814405918121338, 0.016212550923228264, 0.06356656551361084, -0.05682499334216118, -0.06808449327945709, -0.020830078050494194, -0.11096034198999405, 0.027975311502814293, -0.0026677637360990047, -0.020863493904471397, -0.011010178364813328, 0.007845406420528889, 0.021286573261022568, 0.04444942623376846, -0.05303753539919853, -0.019685113802552223, 0.01539368275552988, -0.08217310905456543, -0.024783244356513023, 0.014238819479942322, -0.13691852986812592, -0.005677407141774893, 0.03179799020290375, 0.04830686375498772, -0.04054674878716469, -0.04142273962497711, -0.036826685070991516, 0.014080044813454151, -0.00927741639316082, -0.00919408816844225, -0.007426771335303783, -0.12157557159662247, 0.005567875225096941, -0.040645960718393326, -0.059138767421245575, 0.02540738135576248, -0.03611698001623154, -0.03978604078292847, 0.00906510092318058, 0.04334618151187897, 0.04641823098063469, 0.02759166620671749, 0.015160168521106243, -0.00011770770652219653, 0.01607673056423664, 0.005848983768373728, 0.05912134051322937, -0.060740936547517776, 0.056861039251089096, 0.07618957757949829, 0.011677095666527748, 0.007041571661829948, -0.022512802854180336, -0.008038055151700974, -0.0017100051045417786, -0.06221436709165573, -0.02529086545109749, 0.04047548025846481, -0.029896382242441177, -0.02881051041185856, 0.06359802931547165, 0.05822062864899635, -0.04094484820961952, 0.05086110532283783, -0.018712639808654785, 0.05990203469991684, 0.05880223959684372, -0.003959069028496742, -0.02649875357747078, -0.0060746935196220875, 0.007804008666425943, 0.06423428654670715, -0.020127082243561745, 0.006429041735827923, -0.11748234182596207, -0.03823646530508995, 0.0008613445679657161, -0.032074104994535446, -0.01470003928989172, -0.004438898526132107, 0.07909102737903595, 0.012715947814285755, 0.0029993653297424316, 0.0001949079887708649, -0.0718197152018547, 0.057225607335567474, -0.06931982934474945, 0.09004122763872147, -0.02485048584640026, -0.0433402955532074, -0.028812244534492493, 0.016788966953754425, -0.011409476399421692, 0.004664268344640732, -0.0041678594425320625, 0.004854964558035135, 0.05297689139842987, -0.06114526838064194, 0.13318555057048798, 0.00830574706196785, -0.01139608584344387, -0.06280948221683502, -0.005770341493189335, 0.0982920303940773, 0.08161940425634384, 0.053153470158576965, 0.0322815366089344, -0.014658047817647457, 0.02445538155734539, 0.01882985606789589, -0.027387915179133415, -0.036688849329948425, -0.11347228288650513, 0.09919878840446472, 0.042588990181684494, -0.01889907754957676, -0.0662468671798706, -0.0077499765902757645, -0.030892428010702133, 0.020862936973571777, -0.07779428362846375, 0.008455955423414707, 0.04834817722439766, -1.248110330673342e-33, 0.015834936872124672, 0.0007315975381061435, 0.035135481506586075, 0.0059440843760967255, 0.00901595689356327, -0.026639016345143318, -0.037854623049497604, -0.11475097388029099, -0.042414601892232895, 0.026692675426602364, 0.043176766484975815, 0.01352092158049345, -0.008510426618158817, 0.04765365645289421, 0.050411779433488846, -0.06222156807780266, -0.011144760996103287, -0.03002299554646015, -0.04036001116037369, 0.04554446414113045, -0.08960933983325958, 0.07712991535663605, 0.012423399835824966, -0.02150545082986355, 0.07262971997261047, -0.0024643586948513985, -0.015210946090519428, 0.010569116100668907, 0.00901226606220007, 0.016953855752944946, 0.03385021165013313, 0.04760349541902542, 0.0378803089261055, 0.07334811240434647, -0.07590755075216293, -0.026236871257424355, -0.07234593480825424, 0.027257883921265602, 0.04749417304992676, 0.04547105357050896, 0.03861740976572037, -0.0008820883231237531, 0.015317020937800407, 0.013024263083934784, 0.019197961315512657, 0.04547232389450073, 0.07055824995040894, 0.07124454528093338, -0.016479136422276497, 0.04674027860164642, -0.05141697824001312, 0.027943115681409836, 0.003999900538474321, -0.13684521615505219, 0.005376370623707771, -0.058037031441926956, 0.02055359072983265, 0.018799735233187675, 0.012884076684713364, 0.012023668736219406, 0.0472080260515213, 0.08926640450954437, -0.012286555022001266, -0.05913674086332321, 0.0016122438246384263, -0.028077799826860428, 0.018334606662392616, -0.013492390513420105, 0.05977679416537285, 0.024298565462231636, -0.03381715342402458, -0.03989213705062866, 0.1003326028585434, -0.0203087255358696, 0.11450298875570297, -0.02901851199567318, -0.001018340582959354, 0.0050201439298689365, 0.005195006728172302, -0.005942627787590027, -0.03613255172967911, -0.009769286960363388, -0.028770530596375465, -0.03607276454567909, -0.05543437600135803, 0.06410343945026398, -0.03306041285395622, 0.03838576748967171, -0.029280010610818863, -0.0198660921305418, -0.02397162653505802, -0.037625838071107864, -0.041713859885931015, 0.0667421743273735, -0.024618620052933693, 2.3371866875298054e-35, 0.0547250360250473, 0.09833406656980515, 0.023227699100971222, 0.114693783223629, 0.09528061747550964, -0.00787738524377346, -0.017212511971592903, 0.04436745494604111, 0.07465691864490509, 0.09633439779281616, 0.1312452107667923, 0.039987143129110336, -0.014550543390214443, 0.024223707616329193, 0.03526420146226883, -0.03982486575841904, 0.021283334121108055, 0.046424709260463715, 0.015092809684574604, 0.009193169884383678, 0.05549049377441406, -0.07880650460720062, 0.04008752852678299, -0.03943280875682831, -0.047696471214294434, 0.03393804654479027, 0.039981186389923096, 0.001193762756884098, -0.07342305034399033, 0.06613484025001526, 0.021755889058113098, 0.02684456668794155, -0.03949245437979698, -0.006181076634675264, -0.03133787214756012, -0.08354733884334564, 0.0016974640311673284, 0.13843943178653717, 0.018883589655160904, 0.055436912924051285, -0.025598129257559776, -0.002969038672745228, 0.05303864926099777, 0.049535591155290604, -0.030078742653131485, -0.07182574272155762, -0.06337060034275055, 0.02917587384581566, -0.11465952545404434, -0.032529328018426895, -0.0671318992972374, 0.053733017295598984, -0.019395705312490463, -0.03990590199828148, 0.05077434703707695, -0.04348047822713852, -0.03553483635187149, 0.018783731386065483, -0.07052040100097656, 0.1043209508061409, -0.0567016527056694, 0.10824528336524963, 0.048412784934043884, 0.0025807437486946583, 0.036881234496831894, 0.06869471073150635, -0.023770291358232498, -0.09511475265026093, -0.06613293290138245, 0.02176239714026451, 0.01872532069683075, -0.10404399782419205, 0.06726082414388657, -0.0480915829539299, 0.015010988339781761, -0.10414595156908035, -0.01328373048454523, 0.07015544176101685, 0.01868368498980999, 0.023249415680766106, 0.040593184530735016, -0.03949554264545441, 0.06833836436271667, 0.01033394318073988, -0.027217824012041092, 0.12147243320941925, -0.06436050683259964, 0.0862777903676033, 0.05496486276388168, 0.008517256006598473, 0.052893295884132385, 0.0704735592007637, 0.054488617926836014, -0.015731483697891235, -0.07873641699552536, -1.398363380644696e-08, -0.0065547628328204155, -0.0069536990486085415, 0.00549152959138155, -0.00998165924102068, -0.03376365825533867, -0.01586337573826313, -0.009456240572035313, -0.02035215124487877, 0.05637226998806, 0.07385769486427307, -0.0003603680816013366, -0.04574840888381004, -0.03704368695616722, 0.02749405801296234, -0.04098350927233696, -0.02366815134882927, -0.11039827018976212, 0.023931892588734627, -0.052821334451436996, -0.009192668832838535, -0.0038785706274211407, -0.024116192013025284, 0.05437786877155304, 0.10146529972553253, 0.036558277904987335, 0.007580878678709269, -0.020219620317220688, -0.0733318105340004, 0.0005717526073567569, 0.09992311149835587, -0.0013204521965235472, 0.04130839556455612, -0.034773293882608414, -0.08077628165483475, 0.016257617622613907, -0.0645580142736435, -0.037633273750543594, 0.03841284289956093, 0.03240961208939552, -0.059219975024461746, -0.02973298728466034, -0.07030455023050308, 0.05138317123055458, 0.008495536632835865, 0.11956316232681274, -0.14337019622325897, -0.0009918012656271458, 0.057628240436315536, -0.08532336354255676, 0.01932595670223236, -0.006227601785212755, -0.02223101444542408, -0.008773605339229107, 0.04066935181617737, 0.015389544889330864, -0.12571904063224792, -0.06966270506381989, 0.0827946811914444, 0.026196368038654327, 0.009410915896296501, -0.02995387464761734, -0.1264168620109558, -0.039235103875398636, 0.011955220252275467], "description_vector": [0.010161378420889378, 0.03702054172754288, 0.015739209949970245, 0.0011658361181616783, 0.07188732922077179, -0.03905102238059044, 0.08338362723588943, 0.0315282866358757, -0.03263932093977928, 0.042967427521944046, -0.025904344394803047, 0.017779702320694923, -0.0933217778801918, 0.0326097309589386, -0.04391865059733391, 0.01360283326357603, 0.047254595905542374, -0.00011384738172637299, -0.0005159328575246036, -0.044058315455913544, 0.016640568152070045, -0.07310980558395386, 0.10624560713768005, 0.06056896969676018, -0.0021399068646132946, -0.032774172723293304, 0.02251889742910862, -0.012389992363750935, -0.014869646169245243, -0.004939723759889603, -0.049328166991472244, 0.04858872666954994, 0.034833502024412155, 0.025517374277114868, -0.014575554057955742, -0.017493491992354393, 0.08115442842245102, 0.027120918035507202, 0.05032927542924881, 0.02507568895816803, -0.037313755601644516, -0.05492451414465904, 0.016460513696074486, 0.027878237888216972, 0.011246489360928535, 0.013711998239159584, -0.003082460956647992, 0.11032824963331223, -0.05893594026565552, 0.06308192759752274, 0.07183311134576797, -0.011128542944788933, 0.04002918675541878, -0.04802154377102852, -0.00827194657176733, -0.04036792367696762, -0.035770855844020844, 0.05011511594057083, -0.013298486359417439, -0.044574420899152756, 0.011838864535093307, -0.002894731005653739, -0.08008749037981033, 0.03864732012152672, 0.051154691725969315, -0.061857521533966064, -0.017183657735586166, 0.07069447636604309, 0.010612710379064083, 0.0014670860255137086, -0.002946153748780489, 0.02350582554936409, 0.016878938302397728, 0.0632895678281784, -0.058033015578985214, 0.0034876116551458836, 0.016017170622944832, 0.071796715259552, -0.06535032391548157, 0.03986765816807747, -0.007038006093353033, 0.017479082569479942, 0.08130983263254166, 0.07145143300294876, -0.012097056955099106, 0.03068615309894085, -0.016431594267487526, 0.005457960534840822, 0.024317126721143723, -0.10093965381383896, -0.01196349784731865, 0.04783400893211365, -0.08667395263910294, -0.03092586249113083, -0.007282607723027468, 0.03844574838876724, -0.008504028432071209, 0.08764616400003433, 0.037653543055057526, 0.01522647961974144, 0.0409034788608551, -0.05847250670194626, 0.05021270364522934, 0.05126671865582466, -0.04422769322991371, -0.08685361593961716, 0.003227476729080081, 0.004578131716698408, 0.05973103642463684, 0.08467425405979156, -0.04853644594550133, -0.01048202347010374, -0.010526526719331741, 0.024614492431282997, -0.04642181843519211, -0.09703759849071503, -0.07001469284296036, 0.10616669058799744, 0.053978294134140015, -0.023879986256361008, -0.04874569922685623, 0.06601633131504059, -0.08058817684650421, -0.05896075442433357, -0.13508038222789764, -0.043088026344776154, 0.000995646696537733, 2.2714218767603145e-33, -0.020835980772972107, 0.019444383680820465, -0.005697805434465408, -0.09005845338106155, -0.001646201591938734, -0.046056147664785385, -0.0546686053276062, -0.12869136035442352, -0.06599701941013336, 0.024778585880994797, 0.0072272708639502525, -0.0940731093287468, 0.0002973833179567009, 0.04018126428127289, 0.14713451266288757, -0.0014650840312242508, -0.0826813355088234, -0.04341892525553703, 0.003841859521344304, -0.003418280743062496, -0.07854100316762924, 0.05515064299106598, 0.04782014340162277, -0.013135364279150963, -0.023230714723467827, -0.07441858947277069, 0.023318957537412643, -0.044987455010414124, -0.04983216151595116, 0.010528222657740116, 0.0838194340467453, 0.01037422101944685, 0.02928449958562851, -0.03653614968061447, -0.074612557888031, 0.020795149728655815, -0.0422525480389595, -0.0498194620013237, 0.057267580181360245, 0.015563633292913437, 0.06329477578401566, -0.03759701922535896, 0.09781251847743988, 0.025663431733846664, -0.05832948163151741, 0.06561121344566345, 0.061049677431583405, 0.054767780005931854, -0.0033835957292467356, 0.02143270894885063, 0.012685918249189854, 0.06992939114570618, -0.011592091992497444, -0.16527609527111053, -0.011534648947417736, 0.0042526088654994965, 0.052953045815229416, -0.055317044258117676, -0.01145183015614748, 0.05402963235974312, -0.006338823586702347, 0.05134459584951401, 0.04337993636727333, -0.05226071923971176, -0.026053668931126595, -0.03815265744924545, 0.0782470703125, -0.025127027183771133, 0.008668338879942894, 0.022089404985308647, -0.09048391878604889, 0.09108150005340576, 0.048597417771816254, 0.04186404123902321, 0.020110396668314934, -0.02498611807823181, 0.01974564418196678, 0.05133293941617012, 0.06044933199882507, -0.05958566442131996, -0.04212716966867447, -0.07524938136339188, -0.0054306527599692345, -0.032192882150411606, 0.039365340024232864, -0.02071319706737995, -0.02603195235133171, -0.014177943579852581, 0.008818913251161575, 0.029714321717619896, 0.047859568148851395, -0.05102498456835747, -0.08445559442043304, 0.0259105134755373, -0.0004852373094763607, -4.077412642784298e-33, 0.022540751844644547, 0.013003397732973099, 0.04559183493256569, 0.062101636081933975, -0.040584154427051544, 0.053073134273290634, -0.08117417246103287, 0.012202028185129166, 0.01164914295077324, 0.0940205305814743, 0.05236241966485977, 0.03606709465384483, 0.006249205209314823, 0.04096098989248276, 0.06960918009281158, 0.03048417530953884, 0.042175084352493286, 0.02744436077773571, -0.05423027649521828, -0.08815961331129074, 0.0595165379345417, -0.06520593166351318, 0.003464370034635067, -0.042547427117824554, -0.0780482292175293, -0.0036021023988723755, 0.027739044278860092, -0.020817967131733894, -0.0419309139251709, -0.0026255303528159857, 0.012655106373131275, -0.023431112989783287, -0.07530327141284943, -0.0517398975789547, -0.011056969873607159, -0.06054738536477089, -0.04607042297720909, 0.0597958117723465, 0.042488787323236465, -0.060952261090278625, 0.016426363959908485, -0.013031595386564732, 0.06506296992301941, 0.003462886204943061, -0.057668305933475494, -0.0703829750418663, -0.06961894780397415, 0.05947813764214516, -0.05941075459122658, -0.00340747507289052, -0.009183846414089203, 0.040401216596364975, 0.038409847766160965, -0.015584977343678474, 0.005268055014312267, 0.019547075033187866, -0.10211063176393509, -0.02292485535144806, -0.061357829719781876, -0.05041201785206795, -0.05535493418574333, 0.09845820814371109, -0.003922868520021439, 0.03788936883211136, 0.0520150400698185, 0.024573203176259995, -0.052109092473983765, -0.056078847497701645, -0.04373156279325485, 0.05828504636883736, 0.06998252868652344, 0.004192084539681673, -0.011104214936494827, -0.03741515055298805, -0.03904280811548233, -0.01949825882911682, 0.017010901123285294, 0.004395828116685152, -0.03187746927142143, 0.07295704632997513, 0.07698697596788406, 0.00701597984880209, 0.03406830132007599, -0.006441427860409021, 0.06518373638391495, 0.07902119308710098, -0.044539082795381546, 0.10940886288881302, -0.020032770931720734, 0.057561181485652924, 0.12484627962112427, 0.08077145367860794, -0.10618606954813004, 0.033728983253240585, -0.00510417902842164, -3.23462785445372e-08, -0.048488128930330276, -0.016018005087971687, -0.04109257459640503, -0.014666708186268806, -0.05356503278017044, 0.008911820128560066, 0.010779100470244884, 0.007690900005400181, 0.013321703299880028, -0.0009872508235275745, 0.018134726211428642, -0.037340905517339706, -0.04214620962738991, 0.08042184263467789, -0.027734100818634033, -0.06564615666866302, -0.045965902507305145, 0.08726167678833008, -0.06597186625003815, -0.013915765099227428, -0.03980376571416855, -0.005563430022448301, 0.07671931385993958, 0.05692272260785103, -0.05079563707113266, 0.0270135048776865, -0.008341223932802677, -0.03033352643251419, 0.010472777299582958, 0.06287212669849396, 0.0015228738775476813, 0.056547053158283234, -0.018671594560146332, -0.057460445910692215, -0.0747397243976593, -0.009441651403903961, 0.0017514049541205168, -0.09026125073432922, 0.04985814541578293, -0.008639723062515259, 0.007795941550284624, -0.06974046677350998, 0.07303695380687714, 0.039134345948696136, 0.06560133397579193, -0.13380663096904755, -0.010383693501353264, 0.0009092314867302775, -0.06193683668971062, 0.02789519727230072, -0.036339085549116135, -0.04760896787047386, 0.01480646152049303, 0.03341684862971306, -0.020672008395195007, -0.044537436217069626, -0.08806760609149933, -0.0018533698748797178, -0.0043679638765752316, 0.06391018629074097, -0.005339599214494228, -0.1570952832698822, 0.04734744504094124, 0.08656676858663559], "id": "fa8e22d6-c0b6-5229-bb9e-ad52eda39a0a"}
{"index": {"_id": "893e6980-f2a0-531f-b056-34dd63fe912c"}}
{"actual_price": "1499", "average_rating": "3.9", "brand": "York", "category": "Clothing and Accessories", "crawled_at": "10-02-2021 20:11:52", "description": "Yorker trackpants made from 100% rich combed cotton giving it a rich look.Designed for Comfort,Skin friendly fabric,itch-free waistband & great for all year round use Proudly made in India", "discount": "66% off", "images": ["https://rukminim1.flixcart.com/image/128/128/kfyasnk0/track-pant/g/5/y/s-19876-yorker-original-imafwamyzrwjynkf.jpeg?q=70", "https://rukminim1.flixcart.com/image/128/128/kfyasnk0/track-pant/g/5/y/s-19876-yorker-original-imafwamynyeuu5zq.jpeg?q=70"], "out_of_stock": false, "pid": "TKPFCZ9EJZV2UVRZ", "product_details": [{"Style Code": "1005BLUE"}, {"Closure": "Drawstring, Elastic"}, {"Pockets": "Side Pockets"}, {"Fabric": "Cotton Blend"}, {"Pattern": "Solid"}, {"Color": "Blue"}], "seller": "Shyam Enterprises", "selling_price": "499", "sub_category": "Bottomwear", "title": "Solid Men Blue Track Pants", "url": "https://www.flipkart.com/yorker-solid-men-blue-track-pants/p/itmfczez7v6rzwer?pid=TKPFCZ9EJZV2UVRZ&lid=LSTTKPFCZ9EJZV2UVRZ9HEITU&marketplace=FLIPKART&srno=b_1_2&otracker=browse&fm=organic&iid=177a46eb-d053-4732-b3de-fcad6ff59cbd.TKPFCZ9EJZV2UVRZ.SEARCH&ssid=utkd4t3gb40000001612415717799", "title_vector": [-0.06019141525030136, -0.005135022569447756, 0.009708089753985405, 0.06218079477548599, -0.010591349564492702, 0.012248382903635502, 0.09323650598526001, -0.022266054525971413, -0.09823177009820938, 0.0005869210581295192, -0.07631386071443558, 0.031280651688575745, -0.009792887605726719, -0.03803044557571411, -0.044921744614839554, 0.015189836733043194, 0.046495407819747925, -0.012077081948518753, -0.047264352440834045, 0.0038989775348454714, 0.03178718313574791, -0.02941937930881977, -0.028587713837623596, 0.08196304738521576, -0.12663142383098602, 0.04286225140094757, 0.016393989324569702, 0.07003754377365112, -0.054525118321180344, 0.0034438224975019693, -0.08168958127498627, 0.0020832596346735954, 0.005117108579725027, -0.03686313331127167, 0.011929367668926716, -0.12936970591545105, 0.02419198490679264, -0.038997866213321686, -0.022826217114925385, -0.012513813562691212, -0.036545734852552414, -0.0754103809595108, 0.02120482176542282, 0.055274587124586105, 0.045793335884809494, 0.020340608432888985, 0.009418141096830368, 0.006184747908264399, 0.03766201063990593, 0.05260898545384407, 0.04924998804926872, -0.02676166594028473, 0.07209012657403946, 0.056356243789196014, 0.025654198601841927, 0.047949228435754776, -0.022336741909384727, -0.012035739608108997, -0.0014236539136618376, -0.004778148606419563, -0.002528237411752343, 0.036166712641716, -0.017522916197776794, -0.0008477805531583726, 0.048792075365781784, 0.026453087106347084, -0.05195533111691475, 0.09085121005773544, -0.04907812550663948, 0.07021164149045944, 0.07324525713920593, -0.03889688476920128, -0.058954328298568726, 0.01819828897714615, 0.04802801460027695, 0.01926848106086254, -0.04299212992191315, -0.03171123191714287, -0.09382703900337219, -0.045744288712739944, -0.024668041616678238, -0.09144936501979828, 0.018536308780312538, -0.0018973428523167968, 0.017206678166985512, 0.019040411338210106, 0.08227058500051498, 0.014102649874985218, -0.04955005645751953, 0.06078352779150009, -0.06752771139144897, 0.062338847666978836, -0.02797255478799343, -0.06257765740156174, -0.004855744540691376, 0.040728237479925156, -0.015667064115405083, 0.029997967183589935, -0.00963408313691616, 0.037522342056035995, 0.027063407003879547, -0.044878169894218445, 0.08399537950754166, -0.029758760705590248, -0.012642151676118374, -0.024567222222685814, -0.018427642062306404, 0.08005357533693314, 0.14311571419239044, 0.07302280515432358, 0.06326282024383545, -0.04570276290178299, 0.0263555608689785, 0.02915828861296177, -0.03841559588909149, -0.039224766194820404, -0.13052642345428467, 0.08124927431344986, 0.016900567337870598, -0.038960330188274384, -0.0121804503723979, 0.01819329708814621, -0.03139530494809151, 0.02274637669324875, -0.07017141580581665, 0.019632289186120033, -0.0026869901921600103, -1.7546064182006877e-33, 0.027031606063246727, -0.00030076911207288504, 0.04688710719347, 0.013285966590046883, -0.044574182480573654, -0.03401856869459152, -0.01858304813504219, -0.0758872926235199, -0.026686618104577065, 0.02008954808115959, 0.006527000572532415, 0.029694847762584686, 0.010507470928132534, -0.015071775764226913, 0.07236503064632416, -0.09391262382268906, -0.026032984256744385, -0.03770439326763153, -0.0862853154540062, 0.030497534200549126, -0.09509263187646866, 0.06352140754461288, 0.009033029899001122, -0.005834189709275961, 0.08710090816020966, -0.026561416685581207, -0.011685465462505817, 0.002704151440411806, -0.007992836646735668, 0.022485075518488884, 0.03288239613175392, 0.058010395616292953, 0.013623522594571114, 0.04162929579615593, -0.06052541360259056, -0.0764586329460144, -0.03927988186478615, -0.0012170533882454038, 0.013834656216204166, -0.007371919229626656, 0.08395735919475555, 0.012263174168765545, -0.004071339964866638, 0.020947186276316643, -0.010913451202213764, 0.03431255370378494, 0.0940139889717102, 0.08099488914012909, 0.01176399178802967, 0.03368615731596947, -0.05530534312129021, 0.05342767387628555, 0.0046374681405723095, -0.1432531327009201, 0.009785875678062439, -0.03916434571146965, 0.03652069345116615, 0.030385389924049377, -0.03639650344848633, 0.05621872469782829, 0.08777175098657608, 0.08851176500320435, 0.008480592630803585, -0.04814821481704712, -0.0006294578779488802, -0.03604734688997269, -0.015358558855950832, -0.01002069003880024, 0.024138720706105232, -0.03867261856794357, -0.033307187259197235, -0.03813552111387253, 0.10141738504171371, -0.0019438981544226408, 0.10132725536823273, -0.015214583836495876, -0.028826026245951653, 0.00365381664596498, -0.06867444515228271, -0.04120820760726929, -0.021338054910302162, -0.03584592044353485, 0.01773611642420292, -0.027401108294725418, -0.02010229602456093, 0.03353903815150261, -0.0362945981323719, 0.01474189292639494, 0.008323626592755318, -0.038941022008657455, -0.047347597777843475, -0.054090093821287155, -0.046156298369169235, 0.06794848293066025, -0.062858946621418, 1.4916990021567471e-34, 0.02251112274825573, 0.10067440569400787, 0.023170866072177887, 0.1267181783914566, 0.06866335868835449, -0.012061787769198418, 0.008129267022013664, 0.04415125399827957, 0.08383606374263763, 0.09129395335912704, 0.13631471991539001, 0.06138617917895317, 0.01532488688826561, 0.02984621375799179, 0.07579772174358368, -0.028913939371705055, 0.02948123589158058, -0.014978255145251751, -0.03559169918298721, 0.006857788190245628, 0.08590061962604523, -0.07704412192106247, 0.0523536279797554, -0.02293567731976509, -0.02715304121375084, 0.039320845156908035, 0.046718861907720566, -0.004255474545061588, -0.07372591644525528, 0.07766576111316681, 0.011243737302720547, 0.06545580178499222, -0.05507387965917587, -0.013554077595472336, -0.015218949876725674, -0.05656379461288452, -0.003550261724740267, 0.09875720739364624, 0.0064027877524495125, 0.03044443391263485, -0.032751623541116714, -0.003849131055176258, 0.03386428952217102, 0.0523153692483902, -0.06252238899469376, -0.08915317058563232, -0.02551998570561409, 0.030604861676692963, -0.1037341058254242, -0.015726694837212563, -0.05559290573000908, 0.04330739751458168, -0.019831044599413872, -0.04832744598388672, 0.0016397995641455054, -0.05904129520058632, -0.06536369770765305, 0.047242339700460434, -0.07066240161657333, 0.06997103989124298, -0.021071799099445343, 0.10270893573760986, 0.07772663235664368, 0.008130775764584541, -0.0029828017577528954, 0.059833891689777374, -0.05386544391512871, -0.1040559932589531, -0.08431339263916016, 0.02345838025212288, 0.003777043893933296, -0.11128176748752594, 0.05381588637828827, -0.017528114840388298, -0.017721984535455704, -0.07015018910169601, -0.016852684319019318, 0.03145086020231247, -0.025292648002505302, 0.006724440958350897, 0.0386434905230999, -0.01783762313425541, 0.07619430869817734, 0.033529892563819885, -0.011579692363739014, 0.10252069681882858, -0.09368831664323807, 0.05028732493519783, 0.013340932317078114, 0.028837518766522408, 0.039413876831531525, 0.02535015530884266, 0.06722496449947357, 0.03675200790166855, -0.11276635527610779, -1.3190829761811074e-08, -0.01725730672478676, -0.01710037887096405, -0.004688262473791838, 0.007969405502080917, -0.012091230601072311, -0.018246285617351532, -0.012093991972506046, -0.01913095824420452, 0.07111130654811859, 0.037656184285879135, -0.025972237810492516, -0.04927787557244301, -0.022341668605804443, 0.02740991674363613, -0.009054494090378284, -0.0174688883125782, -0.09996296465396881, 0.031899213790893555, -0.06256154179573059, -0.05737103894352913, 0.007009553257375956, -0.0664268434047699, 0.014669003896415234, 0.11810323596000671, 0.031506724655628204, -0.0173180028796196, -2.8395308618200943e-05, -0.06534256041049957, 0.051778025925159454, 0.08315563946962357, 0.022770650684833527, 0.0406656414270401, 0.0002758259361144155, -0.060648806393146515, 0.04525751993060112, -0.03677786886692047, -0.05257030203938484, 0.056950684636831284, 0.041695524007081985, -0.05125190317630768, -0.01769469864666462, -0.09605064988136292, 0.028066884726285934, 0.003718811087310314, 0.08441811800003052, -0.15025095641613007, 0.015007189474999905, 0.09505514800548553, -0.06142666935920715, -0.030964642763137817, -0.02511732466518879, -0.024303453043103218, -0.0008019664091989398, 0.01580498181283474, 0.03403494134545326, -0.07672290503978729, -0.021104278042912483, 0.0634983479976654, 0.021327532827854156, -0.008572837337851524, -0.038456518203020096, -0.06908325850963593, -0.008952104486525059, 0.015275414101779461], "description_vector": [0.010161378420889378, 0.03702054172754288, 0.015739209949970245, 0.0011658361181616783, 0.07188732922077179, -0.03905102238059044, 0.08338362723588943, 0.0315282866358757, -0.03263932093977928, 0.042967427521944046, -0.025904344394803047, 0.017779702320694923, -0.0933217778801918, 0.0326097309589386, -0.04391865059733391, 0.01360283326357603, 0.047254595905542374, -0.00011384738172637299, -0.0005159328575246036, -0.044058315455913544, 0.016640568152070045, -0.07310980558395386, 0.10624560713768005, 0.06056896969676018, -0.0021399068646132946, -0.032774172723293304, 0.02251889742910862, -0.012389992363750935, -0.014869646169245243, -0.004939723759889603, -0.049328166991472244, 0.04858872666954994, 0.034833502024412155, 0.025517374277114868, -0.014575554057955742, -0.017493491992354393, 0.08115442842245102, 0.027120918035507202, 0.05032927542924881, 0.02507568895816803, -0.037313755601644516, -0.05492451414465904, 0.016460513696074486, 0.027878237888216972, 0.011246489360928535, 0.013711998239159584, -0.003082460956647992, 0.11032824963331223, -0.05893594026565552, 0.06308192759752274, 0.07183311134576797, -0.011128542944788933, 0.04002918675541878, -0.04802154377102852, -0.00827194657176733, -0.04036792367696762, -0.035770855844020844, 0.05011511594057083, -0.013298486359417439, -0.044574420899152756, 0.011838864535093307, -0.002894731005653739, -0.08008749037981033, 0.03864732012152672, 0.051154691725969315, -0.061857521533966064, -0.017183657735586166, 0.07069447636604309, 0.010612710379064083, 0.0014670860255137086, -0.002946153748780489, 0.02350582554936409, 0.016878938302397728, 0.0632895678281784, -0.058033015578985214, 0.0034876116551458836, 0.016017170622944832, 0.071796715259552, -0.06535032391548157, 0.03986765816807747, -0.007038006093353033, 0.017479082569479942, 0.08130983263254166, 0.07145143300294876, -0.012097056955099106, 0.03068615309894085, -0.016431594267487526, 0.005457960534840822, 0.024317126721143723, -0.10093965381383896, -0.01196349784731865, 0.04783400893211365, -0.08667395263910294, -0.03092586249113083, -0.007282607723027468, 0.03844574838876724, -0.008504028432071209, 0.08764616400003433, 0.037653543055057526, 0.01522647961974144, 0.0409034788608551, -0.05847250670194626, 0.05021270364522934, 0.05126671865582466, -0.04422769322991371, -0.08685361593961716, 0.003227476729080081, 0.004578131716698408, 0.05973103642463684, 0.08467425405979156, -0.04853644594550133, -0.01048202347010374, -0.010526526719331741, 0.024614492431282997, -0.04642181843519211, -0.09703759849071503, -0.07001469284296036, 0.10616669058799744, 0.053978294134140015, -0.023879986256361008, -0.04874569922685623, 0.06601633131504059, -0.08058817684650421, -0.05896075442433357, -0.13508038222789764, -0.043088026344776154, 0.000995646696537733, 2.2714218767603145e-33, -0.020835980772972107, 0.019444383680820465, -0.005697805434465408, -0.09005845338106155, -0.001646201591938734, -0.046056147664785385, -0.0546686053276062, -0.12869136035442352, -0.06599701941013336, 0.024778585880994797, 0.0072272708639502525, -0.0940731093287468, 0.0002973833179567009, 0.04018126428127289, 0.14713451266288757, -0.0014650840312242508, -0.0826813355088234, -0.04341892525553703, 0.003841859521344304, -0.003418280743062496, -0.07854100316762924, 0.05515064299106598, 0.04782014340162277, -0.013135364279150963, -0.023230714723467827, -0.07441858947277069, 0.023318957537412643, -0.044987455010414124, -0.04983216151595116, 0.010528222657740116, 0.0838194340467453, 0.01037422101944685, 0.02928449958562851, -0.03653614968061447, -0.074612557888031, 0.020795149728655815, -0.0422525480389595, -0.0498194620013237, 0.057267580181360245, 0.015563633292913437, 0.06329477578401566, -0.03759701922535896, 0.09781251847743988, 0.025663431733846664, -0.05832948163151741, 0.06561121344566345, 0.061049677431583405, 0.054767780005931854, -0.0033835957292467356, 0.02143270894885063, 0.012685918249189854, 0.06992939114570618, -0.011592091992497444, -0.16527609527111053, -0.011534648947417736, 0.0042526088654994965, 0.052953045815229416, -0.055317044258117676, -0.01145183015614748, 0.05402963235974312, -0.006338823586702347, 0.05134459584951401, 0.04337993636727333, -0.05226071923971176, -0.026053668931126595, -0.03815265744924545, 0.0782470703125, -0.025127027183771133, 0.008668338879942894, 0.022089404985308647, -0.09048391878604889, 0.09108150005340576, 0.048597417771816254, 0.04186404123902321, 0.020110396668314934, -0.02498611807823181, 0.01974564418196678, 0.05133293941617012, 0.06044933199882507, -0.05958566442131996, -0.04212716966867447, -0.07524938136339188, -0.0054306527599692345, -0.032192882150411606, 0.039365340024232864, -0.02071319706737995, -0.02603195235133171, -0.014177943579852581, 0.008818913251161575, 0.029714321717619896, 0.047859568148851395, -0.05102498456835747, -0.08445559442043304, 0.0259105134755373, -0.0004852373094763607, -4.077412642784298e-33, 0.022540751844644547, 0.013003397732973099, 0.04559183493256569, 0.062101636081933975, -0.040584154427051544, 0.053073134273290634, -0.08117417246103287, 0.012202028185129166, 0.01164914295077324, 0.0940205305814743, 0.05236241966485977, 0.03606709465384483, 0.006249205209314823, 0.04096098989248276, 0.06960918009281158, 0.03048417530953884, 0.042175084352493286, 0.02744436077773571, -0.05423027649521828, -0.08815961331129074, 0.0595165379345417, -0.06520593166351318, 0.003464370034635067, -0.042547427117824554, -0.0780482292175293, -0.0036021023988723755, 0.027739044278860092, -0.020817967131733894, -0.0419309139251709, -0.0026255303528159857, 0.012655106373131275, -0.023431112989783287, -0.07530327141284943, -0.0517398975789547, -0.011056969873607159, -0.06054738536477089, -0.04607042297720909, 0.0597958117723465, 0.042488787323236465, -0.060952261090278625, 0.016426363959908485, -0.013031595386564732, 0.06506296992301941, 0.003462886204943061, -0.057668305933475494, -0.0703829750418663, -0.06961894780397415, 0.05947813764214516, -0.05941075459122658, -0.00340747507289052, -0.009183846414089203, 0.040401216596364975, 0.038409847766160965, -0.015584977343678474, 0.005268055014312267, 0.019547075033187866, -0.10211063176393509, -0.02292485535144806, -0.061357829719781876, -0.05041201785206795, -0.05535493418574333, 0.09845820814371109, -0.003922868520021439, 0.03788936883211136, 0.0520150400698185, 0.024573203176259995, -0.052109092473983765, -0.056078847497701645, -0.04373156279325485, 0.05828504636883736, 0.06998252868652344, 0.004192084539681673, -0.011104214936494827, -0.03741515055298805, -0.03904280811548233, -0.01949825882911682, 0.017010901123285294, 0.004395828116685152, -0.03187746927142143, 0.07295704632997513, 0.07698697596788406, 0.00701597984880209, 0.03406830132007599, -0.006441427860409021, 0.06518373638391495, 0.07902119308710098, -0.044539082795381546, 0.10940886288881302, -0.020032770931720734, 0.057561181485652924, 0.12484627962112427, 0.08077145367860794, -0.10618606954813004, 0.033728983253240585, -0.00510417902842164, -3.23462785445372e-08, -0.048488128930330276, -0.016018005087971687, -0.04109257459640503, -0.014666708186268806, -0.05356503278017044, 0.008911820128560066, 0.010779100470244884, 0.007690900005400181, 0.013321703299880028, -0.0009872508235275745, 0.018134726211428642, -0.037340905517339706, -0.04214620962738991, 0.08042184263467789, -0.027734100818634033, -0.06564615666866302, -0.045965902507305145, 0.08726167678833008, -0.06597186625003815, -0.013915765099227428, -0.03980376571416855, -0.005563430022448301, 0.07671931385993958, 0.05692272260785103, -0.05079563707113266, 0.0270135048776865, -0.008341223932802677, -0.03033352643251419, 0.010472777299582958, 0.06287212669849396, 0.0015228738775476813, 0.056547053158283234, -0.018671594560146332, -0.057460445910692215, -0.0747397243976593, -0.009441651403903961, 0.0017514049541205168, -0.09026125073432922, 0.04985814541578293, -0.008639723062515259, 0.007795941550284624, -0.06974046677350998, 0.07303695380687714, 0.039134345948696136, 0.06560133397579193, -0.13380663096904755, -0.010383693501353264, 0.0009092314867302775, -0.06193683668971062, 0.02789519727230072, -0.036339085549116135, -0.04760896787047386, 0.01480646152049303, 0.03341684862971306, -0.020672008395195007, -0.044537436217069626, -0.08806760609149933, -0.0018533698748797178, -0.0043679638765752316, 0.06391018629074097, -0.005339599214494228, -0.1570952832698822, 0.04734744504094124, 0.08656676858663559], "id": "893e6980-f2a0-531f-b056-34dd63fe912c"}
{"index": {"_id": "eb4c8eab-8206-59d0-bcd1-a724d96bf74f"}}
{"actual_price": "2999", "average_rating": "3.9", "brand": "York", "category": "Clothing and Accessories", "crawled_at": "10-02-2021 20:11:52", "description": "Yorker trackpants made from 100% rich combed cotton giving it a rich look.Designed for Comfort,Skin friendly fabric,itch-free waistband & great for all year round use Proudly made in India", "discount": "68% off", "images": ["https://rukminim1.flixcart.com/image/128/128/jr3t5e80/track-pant/e/c/s/xl-1005combo4-yorker-original-imafczgcc8t8uppk.jpeg?q=70", "https://rukminim1.flixcart.com/image/128/128/jr58l8w0/track-pant/f/s/v/m-1005combo9-yorker-original-imafczez7buydy6r.jpeg?q=70"], "out_of_stock": false, "pid": "TKPFCZ9EHFCY5Z4Y", "product_details": [{"Style Code": "1005COMBO4"}, {"Closure": "Elastic"}, {"Pockets": "Side Pockets"}, {"Fabric": "Cotton Blend"}, {"Pattern": "Solid"}, {"Color": "Multicolor"}], "seller": "Shyam Enterprises", "selling_price": "931", "sub_category": "Bottomwear", "title": "Solid Men Multicolor Track Pants", "url": "https://www.flipkart.com/yorker-solid-men-multicolor-track-pants/p/itm1eee3ca648155?pid=TKPFCZ9EHFCY5Z4Y&lid=LSTTKPFCZ9EHFCY5Z4YDOVNQS&marketplace=FLIPKART&srno=b_1_3&otracker=browse&fm=organic&iid=177a46eb-d053-4732-b3de-fcad6ff59cbd.TKPFCZ9EHFCY5Z4Y.SEARCH&ssid=utkd4t3gb40000001612415717799", "title_vector": [-0.01750304363667965, -0.011636498384177685, -0.02210037223994732, 0.01183471828699112, -0.021814405918121338, 0.016212550923228264, 0.06356656551361084, -0.05682499334216118, -0.06808449327945709, -0.020830078050494194, -0.11096034198999405, 0.027975311502814293, -0.0026677637360990047, -0.020863493904471397, -0.011010178364813328, 0.007845406420528889, 0.021286573261022568, 0.04444942623376846, -0.05303753539919853, -0.019685113802552223, 0.01539368275552988, -0.08217310905456543, -0.024783244356513023, 0.014238819479942322, -0.13691852986812592, -0.005677407141774893, 0.03179799020290375, 0.04830686375498772, -0.04054674878716469, -0.04142273962497711, -0.036826685070991516, 0.014080044813454151, -0.00927741639316082, -0.00919408816844225, -0.007426771335303783, -0.12157557159662247, 0.005567875225096941, -0.040645960718393326, -0.059138767421245575, 0.02540738135576248, -0.03611698001623154, -0.03978604078292847, 0.00906510092318058, 0.04334618151187897, 0.04641823098063469, 0.02759166620671749, 0.015160168521106243, -0.00011770770652219653, 0.01607673056423664, 0.005848983768373728, 0.05912134051322937, -0.060740936547517776, 0.056861039251089096, 0.07618957757949829, 0.011677095666527748, 0.007041571661829948, -0.022512802854180336, -0.008038055151700974, -0.0017100051045417786, -0.06221436709165573, -0.02529086545109749, 0.04047548025846481, -0.029896382242441177, -0.02881051041185856, 0.06359802931547165, 0.05822062864899635, -0.04094484820961952, 0.05086110532283783, -0.018712639808654785, 0.05990203469991684, 0.05880223959684372, -0.003959069028496742, -0.02649875357747078, -0.0060746935196220875, 0.007804008666425943, 0.06423428654670715, -0.020127082243561745, 0.006429041735827923, -0.11748234182596207, -0.03823646530508995, 0.0008613445679657161, -0.032074104994535446, -0.01470003928989172, -0.004438898526132107, 0.07909102737903595, 0.012715947814285755, 0.0029993653297424316, 0.0001949079887708649, -0.0718197152018547, 0.057225607335567474, -0.06931982934474945, 0.09004122763872147, -0.02485048584640026, -0.0433402955532074, -0.028812244534492493, 0.016788966953754425, -0.011409476399421692, 0.004664268344640732, -0.0041678594425320625, 0.004854964558035135, 0.05297689139842987, -0.06114526838064194, 0.13318555057048798, 0.00830574706196785, -0.01139608584344387, -0.06280948221683502, -0.005770341493189335, 0.0982920303940773, 0.08161940425634384, 0.053153470158576965, 0.0322815366089344, -0.014658047817647457, 0.02445538155734539, 0.01882985606789589, -0.027387915179133415, -0.036688849329948425, -0.11347228288650513, 0.09919878840446472, 0.042588990181684494, -0.01889907754957676, -0.0662468671798706, -0.0077499765902757645, -0.030892428010702133, 0.020862936973571777, -0.07779428362846375, 0.008455955423414707, 0.04834817722439766, -1.248110330673342e-33, 0.015834936872124672, 0.0007315975381061435, 0.035135481506586075, 0.0059440843760967255, 0.00901595689356327, -0.026639016345143318, -0.037854623049497604, -0.11475097388029099, -0.042414601892232895, 0.026692675426602364, 0.043176766484975815, 0.01352092158049345, -0.008510426618158817, 0.04765365645289421, 0.050411779433488846, -0.06222156807780266, -0.011144760996103287, -0.03002299554646015, -0.04036001116037369, 0.04554446414113045, -0.08960933983325958, 0.07712991535663605, 0.012423399835824966, -0.02150545082986355, 0.07262971997261047, -0.0024643586948513985, -0.015210946090519428, 0.010569116100668907, 0.00901226606220007, 0.016953855752944946, 0.03385021165013313, 0.04760349541902542, 0.0378803089261055, 0.07334811240434647, -0.07590755075216293, -0.026236871257424355, -0.07234593480825424, 0.027257883921265602, 0.04749417304992676, 0.04547105357050896, 0.03861740976572037, -0.0008820883231237531, 0.015317020937800407, 0.013024263083934784, 0.019197961315512657, 0.04547232389450073, 0.07055824995040894, 0.07124454528093338, -0.016479136422276497, 0.04674027860164642, -0.05141697824001312, 0.027943115681409836, 0.003999900538474321, -0.13684521615505219, 0.005376370623707771, -0.058037031441926956, 0.02055359072983265, 0.018799735233187675, 0.012884076684713364, 0.012023668736219406, 0.0472080260515213, 0.08926640450954437, -0.012286555022001266, -0.05913674086332321, 0.0016122438246384263, -0.028077799826860428, 0.018334606662392616, -0.013492390513420105, 0.05977679416537285, 0.024298565462231636, -0.03381715342402458, -0.03989213705062866, 0.1003326028585434, -0.0203087255358696, 0.11450298875570297, -0.02901851199567318, -0.001018340582959354, 0.0050201439298689365, 0.005195006728172302, -0.005942627787590027, -0.03613255172967911, -0.009769286960363388, -0.028770530596375465, -0.03607276454567909, -0.05543437600135803, 0.06410343945026398, -0.03306041285395622, 0.03838576748967171, -0.029280010610818863, -0.0198660921305418, -0.02397162653505802, -0.037625838071107864, -0.041713859885931015, 0.0667421743273735, -0.024618620052933693, 2.3371866875298054e-35, 0.0547250360250473, 0.09833406656980515, 0.023227699100971222, 0.114693783223629, 0.09528061747550964, -0.00787738524377346, -0.017212511971592903, 0.04436745494604111, 0.07465691864490509, 0.09633439779281616, 0.1312452107667923, 0.039987143129110336, -0.014550543390214443, 0.024223707616329193, 0.03526420146226883, -0.03982486575841904, 0.021283334121108055, 0.046424709260463715, 0.015092809684574604, 0.009193169884383678, 0.05549049377441406, -0.07880650460720062, 0.04008752852678299, -0.03943280875682831, -0.047696471214294434, 0.03393804654479027, 0.039981186389923096, 0.001193762756884098, -0.07342305034399033, 0.06613484025001526, 0.021755889058113098, 0.02684456668794155, -0.03949245437979698, -0.006181076634675264, -0.03133787214756012, -0.08354733884334564, 0.0016974640311673284, 0.13843943178653717, 0.018883589655160904, 0.055436912924051285, -0.025598129257559776, -0.002969038672745228, 0.05303864926099777, 0.049535591155290604, -0.030078742653131485, -0.07182574272155762, -0.06337060034275055, 0.02917587384581566, -0.11465952545404434, -0.032529328018426895, -0.0671318992972374, 0.053733017295598984, -0.019395705312490463, -0.03990590199828148, 0.05077434703707695, -0.04348047822713852, -0.03553483635187149, 0.018783731386065483, -0.07052040100097656, 0.1043209508061409, -0.0567016527056694, 0.10824528336524963, 0.048412784934043884, 0.0025807437486946583, 0.036881234496831894, 0.06869471073150635, -0.023770291358232498, -0.09511475265026093, -0.06613293290138245, 0.02176239714026451, 0.01872532069683075, -0.10404399782419205, 0.06726082414388657, -0.0480915829539299, 0.015010988339781761, -0.10414595156908035, -0.01328373048454523, 0.07015544176101685, 0.01868368498980999, 0.023249415680766106, 0.040593184530735016, -0.03949554264545441, 0.06833836436271667, 0.01033394318073988, -0.027217824012041092, 0.12147243320941925, -0.06436050683259964, 0.0862777903676033, 0.05496486276388168, 0.008517256006598473, 0.052893295884132385, 0.0704735592007637, 0.054488617926836014, -0.015731483697891235, -0.07873641699552536, -1.398363380644696e-08, -0.0065547628328204155, -0.0069536990486085415, 0.00549152959138155, -0.00998165924102068, -0.03376365825533867, -0.01586337573826313, -0.009456240572035313, -0.02035215124487877, 0.05637226998806, 0.07385769486427307, -0.0003603680816013366, -0.04574840888381004, -0.03704368695616722, 0.02749405801296234, -0.04098350927233696, -0.02366815134882927, -0.11039827018976212, 0.023931892588734627, -0.052821334451436996, -0.009192668832838535, -0.0038785706274211407, -0.024116192013025284, 0.05437786877155304, 0.10146529972553253, 0.036558277904987335, 0.007580878678709269, -0.020219620317220688, -0.0733318105340004, 0.0005717526073567569, 0.09992311149835587, -0.0013204521965235472, 0.04130839556455612, -0.034773293882608414, -0.08077628165483475, 0.016257617622613907, -0.0645580142736435, -0.037633273750543594, 0.03841284289956093, 0.03240961208939552, -0.059219975024461746, -0.02973298728466034, -0.07030455023050308, 0.05138317123055458, 0.008495536632835865, 0.11956316232681274, -0.14337019622325897, -0.0009918012656271458, 0.057628240436315536, -0.08532336354255676, 0.01932595670223236, -0.006227601785212755, -0.02223101444542408, -0.008773605339229107, 0.04066935181617737, 0.015389544889330864, -0.12571904063224792, -0.06966270506381989, 0.0827946811914444, 0.026196368038654327, 0.009410915896296501, -0.02995387464761734, -0.1264168620109558, -0.039235103875398636, 0.011955220252275467], "description_vector": [0.010161378420889378, 0.03702054172754288, 0.015739209949970245, 0.0011658361181616783, 0.07188732922077179, -0.03905102238059044, 0.08338362723588943, 0.0315282866358757, -0.03263932093977928, 0.042967427521944046, -0.025904344394803047, 0.017779702320694923, -0.0933217778801918, 0.0326097309589386, -0.04391865059733391, 0.01360283326357603, 0.047254595905542374, -0.00011384738172637299, -0.0005159328575246036, -0.044058315455913544, 0.016640568152070045, -0.07310980558395386, 0.10624560713768005, 0.06056896969676018, -0.0021399068646132946, -0.032774172723293304, 0.02251889742910862, -0.012389992363750935, -0.014869646169245243, -0.004939723759889603, -0.049328166991472244, 0.04858872666954994, 0.034833502024412155, 0.025517374277114868, -0.014575554057955742, -0.017493491992354393, 0.08115442842245102, 0.027120918035507202, 0.05032927542924881, 0.02507568895816803, -0.037313755601644516, -0.05492451414465904, 0.016460513696074486, 0.027878237888216972, 0.011246489360928535, 0.013711998239159584, -0.003082460956647992, 0.11032824963331223, -0.05893594026565552, 0.06308192759752274, 0.07183311134576797, -0.011128542944788933, 0.04002918675541878, -0.04802154377102852, -0.00827194657176733, -0.04036792367696762, -0.035770855844020844, 0.05011511594057083, -0.013298486359417439, -0.044574420899152756, 0.011838864535093307, -0.002894731005653739, -0.08008749037981033, 0.03864732012152672, 0.051154691725969315, -0.061857521533966064, -0.017183657735586166, 0.07069447636604309, 0.010612710379064083, 0.0014670860255137086, -0.002946153748780489, 0.02350582554936409, 0.016878938302397728, 0.0632895678281784, -0.058033015578985214, 0.0034876116551458836, 0.016017170622944832, 0.071796715259552, -0.06535032391548157, 0.03986765816807747, -0.007038006093353033, 0.017479082569479942, 0.08130983263254166, 0.07145143300294876, -0.012097056955099106, 0.03068615309894085, -0.016431594267487526, 0.005457960534840822, 0.024317126721143723, -0.10093965381383896, -0.01196349784731865, 0.04783400893211365, -0.08667395263910294, -0.03092586249113083, -0.007282607723027468, 0.03844574838876724, -0.008504028432071209, 0.08764616400003433, 0.037653543055057526, 0.01522647961974144, 0.0409034788608551, -0.05847250670194626, 0.05021270364522934, 0.05126671865582466, -0.04422769322991371, -0.08685361593961716, 0.003227476729080081, 0.004578131716698408, 0.05973103642463684, 0.08467425405979156, -0.04853644594550133, -0.01048202347010374, -0.010526526719331741, 0.024614492431282997, -0.04642181843519211, -0.09703759849071503, -0.07001469284296036, 0.10616669058799744, 0.053978294134140015, -0.023879986256361008, -0.04874569922685623, 0.06601633131504059, -0.08058817684650421, -0.05896075442433357, -0.13508038222789764, -0.043088026344776154, 0.000995646696537733, 2.2714218767603145e-33, -0.020835980772972107, 0.019444383680820465, -0.005697805434465408, -0.09005845338106155, -0.001646201591938734, -0.046056147664785385, -0.0546686053276062, -0.12869136035442352, -0.06599701941013336, 0.024778585880994797, 0.0072272708639502525, -0.0940731093287468, 0.0002973833179567009, 0.04018126428127289, 0.14713451266288757, -0.0014650840312242508, -0.0826813355088234, -0.04341892525553703, 0.003841859521344304, -0.003418280743062496, -0.07854100316762924, 0.05515064299106598, 0.04782014340162277, -0.013135364279150963, -0.023230714723467827, -0.07441858947277069, 0.023318957537412643, -0.044987455010414124, -0.04983216151595116, 0.010528222657740116, 0.0838194340467453, 0.01037422101944685, 0.02928449958562851, -0.03653614968061447, -0.074612557888031, 0.020795149728655815, -0.0422525480389595, -0.0498194620013237, 0.057267580181360245, 0.015563633292913437, 0.06329477578401566, -0.03759701922535896, 0.09781251847743988, 0.025663431733846664, -0.05832948163151741, 0.06561121344566345, 0.061049677431583405, 0.054767780005931854, -0.0033835957292467356, 0.02143270894885063, 0.012685918249189854, 0.06992939114570618, -0.011592091992497444, -0.16527609527111053, -0.011534648947417736, 0.0042526088654994965, 0.052953045815229416, -0.055317044258117676, -0.01145183015614748, 0.05402963235974312, -0.006338823586702347, 0.05134459584951401, 0.04337993636727333, -0.05226071923971176, -0.026053668931126595, -0.03815265744924545, 0.0782470703125, -0.025127027183771133, 0.008668338879942894, 0.022089404985308647, -0.09048391878604889, 0.09108150005340576, 0.048597417771816254, 0.04186404123902321, 0.020110396668314934, -0.02498611807823181, 0.01974564418196678, 0.05133293941617012, 0.06044933199882507, -0.05958566442131996, -0.04212716966867447, -0.07524938136339188, -0.0054306527599692345, -0.032192882150411606, 0.039365340024232864, -0.02071319706737995, -0.02603195235133171, -0.014177943579852581, 0.008818913251161575, 0.029714321717619896, 0.047859568148851395, -0.05102498456835747, -0.08445559442043304, 0.0259105134755373, -0.0004852373094763607, -4.077412642784298e-33, 0.022540751844644547, 0.013003397732973099, 0.04559183493256569, 0.062101636081933975, -0.040584154427051544, 0.053073134273290634, -0.08117417246103287, 0.012202028185129166, 0.01164914295077324, 0.0940205305814743, 0.05236241966485977, 0.03606709465384483, 0.006249205209314823, 0.04096098989248276, 0.06960918009281158, 0.03048417530953884, 0.042175084352493286, 0.02744436077773571, -0.05423027649521828, -0.08815961331129074, 0.0595165379345417, -0.06520593166351318, 0.003464370034635067, -0.042547427117824554, -0.0780482292175293, -0.0036021023988723755, 0.027739044278860092, -0.020817967131733894, -0.0419309139251709, -0.0026255303528159857, 0.012655106373131275, -0.023431112989783287, -0.07530327141284943, -0.0517398975789547, -0.011056969873607159, -0.06054738536477089, -0.04607042297720909, 0.0597958117723465, 0.042488787323236465, -0.060952261090278625, 0.016426363959908485, -0.013031595386564732, 0.06506296992301941, 0.003462886204943061, -0.057668305933475494, -0.0703829750418663, -0.06961894780397415, 0.05947813764214516, -0.05941075459122658, -0.00340747507289052, -0.009183846414089203, 0.040401216596364975, 0.038409847766160965, -0.015584977343678474, 0.005268055014312267, 0.019547075033187866, -0.10211063176393509, -0.02292485535144806, -0.061357829719781876, -0.05041201785206795, -0.05535493418574333, 0.09845820814371109, -0.003922868520021439, 0.03788936883211136, 0.0520150400698185, 0.024573203176259995, -0.052109092473983765, -0.056078847497701645, -0.04373156279325485, 0.05828504636883736, 0.06998252868652344, 0.004192084539681673, -0.011104214936494827, -0.03741515055298805, -0.03904280811548233, -0.01949825882911682, 0.017010901123285294, 0.004395828116685152, -0.03187746927142143, 0.07295704632997513, 0.07698697596788406, 0.00701597984880209, 0.03406830132007599, -0.006441427860409021, 0.06518373638391495, 0.07902119308710098, -0.044539082795381546, 0.10940886288881302, -0.020032770931720734, 0.057561181485652924, 0.12484627962112427, 0.08077145367860794, -0.10618606954813004, 0.033728983253240585, -0.00510417902842164, -3.23462785445372e-08, -0.048488128930330276, -0.016018005087971687, -0.04109257459640503, -0.014666708186268806, -0.05356503278017044, 0.008911820128560066, 0.010779100470244884, 0.007690900005400181, 0.013321703299880028, -0.0009872508235275745, 0.018134726211428642, -0.037340905517339706, -0.04214620962738991, 0.08042184263467789, -0.027734100818634033, -0.06564615666866302, -0.045965902507305145, 0.08726167678833008, -0.06597186625003815, -0.013915765099227428, -0.03980376571416855, -0.005563430022448301, 0.07671931385993958, 0.05692272260785103, -0.05079563707113266, 0.0270135048776865, -0.008341223932802677, -0.03033352643251419, 0.010472777299582958, 0.06287212669849396, 0.0015228738775476813, 0.056547053158283234, -0.018671594560146332, -0.057460445910692215, -0.0747397243976593, -0.009441651403903961, 0.0017514049541205168, -0.09026125073432922, 0.04985814541578293, -0.008639723062515259, 0.007795941550284624, -0.06974046677350998, 0.07303695380687714, 0.039134345948696136, 0.06560133397579193, -0.13380663096904755, -0.010383693501353264, 0.0009092314867302775, -0.06193683668971062, 0.02789519727230072, -0.036339085549116135, -0.04760896787047386, 0.01480646152049303, 0.03341684862971306, -0.020672008395195007, -0.044537436217069626, -0.08806760609149933, -0.0018533698748797178, -0.0043679638765752316, 0.06391018629074097, -0.005339599214494228, -0.1570952832698822, 0.04734744504094124, 0.08656676858663559], "id": "eb4c8eab-8206-59d0-bcd1-a724d96bf74f"}
{"index": {"_id": "3f3f97bb-5faf-57df-a9ff-1af24e2b1045"}}
{"actual_price": "2999", "average_rating": "3.9", "brand": "York", "category": "Clothing and Accessories", "crawled_at": "10-02-2021 20:11:53", "description": "Yorker trackpants made from 100% rich combed cotton giving it a rich look.Designed for Comfort,Skin friendly fabric,itch-free waistband & great for all year round use Proudly made in India", "discount": "69% off", "images": ["https://rukminim1.flixcart.com/image/128/128/jr3t5e80/track-pant/w/e/f/xl-1005combo3-yorker-original-imafczezgq8ntn7c.jpeg?q=70", "https://rukminim1.flixcart.com/image/128/128/jr3t5e80/track-pant/8/n/h/xxl-1005dskin-yorker-original-imafczezeauspu2a.jpeg?q=70"], "out_of_stock": false, "pid": "TKPFCZ9ESZZ7YWEF", "product_details": [{"Style Code": "1005COMBO3"}, {"Closure": "Elastic"}, {"Pockets": "Side Pockets"}, {"Fabric": "Cotton Blend"}, {"Pattern": "Solid"}, {"Color": "Multicolor"}], "seller": "Shyam Enterprises", "selling_price": "911", "sub_category": "Bottomwear", "title": "Solid Men Multicolor Track Pants", "url": "https://www.flipkart.com/yorker-solid-men-multicolor-track-pants/p/itma2f9bfe7dafb7?pid=TKPFCZ9ESZZ7YWEF&lid=LSTTKPFCZ9ESZZ7YWEFAZ1PUK&marketplace=FLIPKART&srno=b_1_4&otracker=browse&fm=organic&iid=177a46eb-d053-4732-b3de-fcad6ff59cbd.TKPFCZ9ESZZ7YWEF.SEARCH&ssid=utkd4t3gb40000001612415717799", "title_vector": [-0.01750304363667965, -0.011636498384177685, -0.02210037223994732, 0.01183471828699112, -0.021814405918121338, 0.016212550923228264, 0.06356656551361084, -0.05682499334216118, -0.06808449327945709, -0.020830078050494194, -0.11096034198999405, 0.027975311502814293, -0.0026677637360990047, -0.020863493904471397, -0.011010178364813328, 0.007845406420528889, 0.021286573261022568, 0.04444942623376846, -0.05303753539919853, -0.019685113802552223, 0.01539368275552988, -0.08217310905456543, -0.024783244356513023, 0.014238819479942322, -0.13691852986812592, -0.005677407141774893, 0.03179799020290375, 0.04830686375498772, -0.04054674878716469, -0.04142273962497711, -0.036826685070991516, 0.014080044813454151, -0.00927741639316082, -0.00919408816844225, -0.007426771335303783, -0.12157557159662247, 0.005567875225096941, -0.040645960718393326, -0.059138767421245575, 0.02540738135576248, -0.03611698001623154, -0.03978604078292847, 0.00906510092318058, 0.04334618151187897, 0.04641823098063469, 0.02759166620671749, 0.015160168521106243, -0.00011770770652219653, 0.01607673056423664, 0.005848983768373728, 0.05912134051322937, -0.060740936547517776, 0.056861039251089096, 0.07618957757949829, 0.011677095666527748, 0.007041571661829948, -0.022512802854180336, -0.008038055151700974, -0.0017100051045417786, -0.06221436709165573, -0.02529086545109749, 0.04047548025846481, -0.029896382242441177, -0.02881051041185856, 0.06359802931547165, 0.05822062864899635, -0.04094484820961952, 0.05086110532283783, -0.018712639808654785, 0.05990203469991684, 0.05880223959684372, -0.003959069028496742, -0.02649875357747078, -0.0060746935196220875, 0.007804008666425943, 0.06423428654670715, -0.020127082243561745, 0.006429041735827923, -0.11748234182596207, -0.03823646530508995, 0.0008613445679657161, -0.032074104994535446, -0.01470003928989172, -0.004438898526132107, 0.07909102737903595, 0.012715947814285755, 0.0029993653297424316, 0.0001949079887708649, -0.0718197152018547, 0.057225607335567474, -0.06931982934474945, 0.09004122763872147, -0.02485048584640026, -0.0433402955532074, -0.028812244534492493, 0.016788966953754425, -0.011409476399421692, 0.004664268344640732, -0.0041678594425320625, 0.004854964558035135, 0.05297689139842987, -0.06114526838064194, 0.13318555057048798, 0.00830574706196785, -0.01139608584344387, -0.06280948221683502, -0.005770341493189335, 0.0982920303940773, 0.08161940425634384, 0.053153470158576965, 0.0322815366089344, -0.014658047817647457, 0.02445538155734539, 0.01882985606789589, -0.027387915179133415, -0.036688849329948425, -0.11347228288650513, 0.09919878840446472, 0.042588990181684494, -0.01889907754957676, -0.0662468671798706, -0.0077499765902757645, -0.030892428010702133, 0.020862936973571777, -0.07779428362846375, 0.008455955423414707, 0.04834817722439766, -1.248110330673342e-33, 0.015834936872124672, 0.0007315975381061435, 0.035135481506586075, 0.0059440843760967255, 0.00901595689356327, -0.026639016345143318, -0.037854623049497604, -0.11475097388029099, -0.042414601892232895, 0.026692675426602364, 0.043176766484975815, 0.01352092158049345, -0.008510426618158817, 0.04765365645289421, 0.050411779433488846, -0.06222156807780266, -0.011144760996103287, -0.03002299554646015, -0.04036001116037369, 0.04554446414113045, -0.08960933983325958, 0.07712991535663605, 0.012423399835824966, -0.02150545082986355, 0.07262971997261047, -0.0024643586948513985, -0.015210946090519428, 0.010569116100668907, 0.00901226606220007, 0.016953855752944946, 0.03385021165013313, 0.04760349541902542, 0.0378803089261055, 0.07334811240434647, -0.07590755075216293, -0.026236871257424355, -0.07234593480825424, 0.027257883921265602, 0.04749417304992676, 0.04547105357050896, 0.03861740976572037, -0.0008820883231237531, 0.015317020937800407, 0.013024263083934784, 0.019197961315512657, 0.04547232389450073, 0.07055824995040894, 0.07124454528093338, -0.016479136422276497, 0.04674027860164642, -0.05141697824001312, 0.027943115681409836, 0.003999900538474321, -0.13684521615505219, 0.005376370623707771, -0.058037031441926956, 0.02055359072983265, 0.018799735233187675, 0.012884076684713364, 0.012023668736219406, 0.0472080260515213, 0.08926640450954437, -0.012286555022001266, -0.05913674086332321, 0.0016122438246384263, -0.028077799826860428, 0.018334606662392616, -0.013492390513420105, 0.05977679416537285, 0.024298565462231636, -0.03381715342402458, -0.03989213705062866, 0.1003326028585434, -0.0203087255358696, 0.11450298875570297, -0.02901851199567318, -0.001018340582959354, 0.0050201439298689365, 0.005195006728172302, -0.005942627787590027, -0.03613255172967911, -0.009769286960363388, -0.028770530596375465, -0.03607276454567909, -0.05543437600135803, 0.06410343945026398, -0.03306041285395622, 0.03838576748967171, -0.029280010610818863, -0.0198660921305418, -0.02397162653505802, -0.037625838071107864, -0.041713859885931015, 0.0667421743273735, -0.024618620052933693, 2.3371866875298054e-35, 0.0547250360250473, 0.09833406656980515, 0.023227699100971222, 0.114693783223629, 0.09528061747550964, -0.00787738524377346, -0.017212511971592903, 0.04436745494604111, 0.07465691864490509, 0.09633439779281616, 0.1312452107667923, 0.039987143129110336, -0.014550543390214443, 0.024223707616329193, 0.03526420146226883, -0.03982486575841904, 0.021283334121108055, 0.046424709260463715, 0.015092809684574604, 0.009193169884383678, 0.05549049377441406, -0.07880650460720062, 0.04008752852678299, -0.03943280875682831, -0.047696471214294434, 0.03393804654479027, 0.039981186389923096, 0.001193762756884098, -0.07342305034399033, 0.06613484025001526, 0.021755889058113098, 0.02684456668794155, -0.03949245437979698, -0.006181076634675264, -0.03133787214756012, -0.08354733884334564, 0.0016974640311673284, 0.13843943178653717, 0.018883589655160904, 0.055436912924051285, -0.025598129257559776, -0.002969038672745228, 0.05303864926099777, 0.049535591155290604, -0.030078742653131485, -0.07182574272155762, -0.06337060034275055, 0.02917587384581566, -0.11465952545404434, -0.032529328018426895, -0.0671318992972374, 0.053733017295598984, -0.019395705312490463, -0.03990590199828148, 0.05077434703707695, -0.04348047822713852, -0.03553483635187149, 0.018783731386065483, -0.07052040100097656, 0.1043209508061409, -0.0567016527056694, 0.10824528336524963, 0.048412784934043884, 0.0025807437486946583, 0.036881234496831894, 0.06869471073150635, -0.023770291358232498, -0.09511475265026093, -0.06613293290138245, 0.02176239714026451, 0.01872532069683075, -0.10404399782419205, 0.06726082414388657, -0.0480915829539299, 0.015010988339781761, -0.10414595156908035, -0.01328373048454523, 0.07015544176101685, 0.01868368498980999, 0.023249415680766106, 0.040593184530735016, -0.03949554264545441, 0.06833836436271667, 0.01033394318073988, -0.027217824012041092, 0.12147243320941925, -0.06436050683259964, 0.0862777903676033, 0.05496486276388168, 0.008517256006598473, 0.052893295884132385, 0.0704735592007637, 0.054488617926836014, -0.015731483697891235, -0.07873641699552536, -1.398363380644696e-08, -0.0065547628328204155, -0.0069536990486085415, 0.00549152959138155, -0.00998165924102068, -0.03376365825533867, -0.01586337573826313, -0.009456240572035313, -0.02035215124487877, 0.05637226998806, 0.07385769486427307, -0.0003603680816013366, -0.04574840888381004, -0.03704368695616722, 0.02749405801296234, -0.04098350927233696, -0.02366815134882927, -0.11039827018976212, 0.023931892588734627, -0.052821334451436996, -0.009192668832838535, -0.0038785706274211407, -0.024116192013025284, 0.05437786877155304, 0.10146529972553253, 0.036558277904987335, 0.007580878678709269, -0.020219620317220688, -0.0733318105340004, 0.0005717526073567569, 0.09992311149835587, -0.0013204521965235472, 0.04130839556455612, -0.034773293882608414, -0.08077628165483475, 0.016257617622613907, -0.0645580142736435, -0.037633273750543594, 0.03841284289956093, 0.03240961208939552, -0.059219975024461746, -0.02973298728466034, -0.07030455023050308, 0.05138317123055458, 0.008495536632835865, 0.11956316232681274, -0.14337019622325897, -0.0009918012656271458, 0.057628240436315536, -0.08532336354255676, 0.01932595670223236, -0.006227601785212755, -0.02223101444542408, -0.008773605339229107, 0.04066935181617737, 0.015389544889330864, -0.12571904063224792, -0.06966270506381989, 0.0827946811914444, 0.026196368038654327, 0.009410915896296501, -0.02995387464761734, -0.1264168620109558, -0.039235103875398636, 0.011955220252275467], "description_vector": [0.010161378420889378, 0.03702054172754288, 0.015739209949970245, 0.0011658361181616783, 0.07188732922077179, -0.03905102238059044, 0.08338362723588943, 0.0315282866358757, -0.03263932093977928, 0.042967427521944046, -0.025904344394803047, 0.017779702320694923, -0.0933217778801918, 0.0326097309589386, -0.04391865059733391, 0.01360283326357603, 0.047254595905542374, -0.00011384738172637299, -0.0005159328575246036, -0.044058315455913544, 0.016640568152070045, -0.07310980558395386, 0.10624560713768005, 0.06056896969676018, -0.0021399068646132946, -0.032774172723293304, 0.02251889742910862, -0.012389992363750935, -0.014869646169245243, -0.004939723759889603, -0.049328166991472244, 0.04858872666954994, 0.034833502024412155, 0.025517374277114868, -0.014575554057955742, -0.017493491992354393, 0.08115442842245102, 0.027120918035507202, 0.05032927542924881, 0.02507568895816803, -0.037313755601644516, -0.05492451414465904, 0.016460513696074486, 0.027878237888216972, 0.011246489360928535, 0.013711998239159584, -0.003082460956647992, 0.11032824963331223, -0.05893594026565552, 0.06308192759752274, 0.07183311134576797, -0.011128542944788933, 0.04002918675541878, -0.04802154377102852, -0.00827194657176733, -0.04036792367696762, -0.035770855844020844, 0.05011511594057083, -0.013298486359417439, -0.044574420899152756, 0.011838864535093307, -0.002894731005653739, -0.08008749037981033, 0.03864732012152672, 0.051154691725969315, -0.061857521533966064, -0.017183657735586166, 0.07069447636604309, 0.010612710379064083, 0.0014670860255137086, -0.002946153748780489, 0.02350582554936409, 0.016878938302397728, 0.0632895678281784, -0.058033015578985214, 0.0034876116551458836, 0.016017170622944832, 0.071796715259552, -0.06535032391548157, 0.03986765816807747, -0.007038006093353033, 0.017479082569479942, 0.08130983263254166, 0.07145143300294876, -0.012097056955099106, 0.03068615309894085, -0.016431594267487526, 0.005457960534840822, 0.024317126721143723, -0.10093965381383896, -0.01196349784731865, 0.04783400893211365, -0.08667395263910294, -0.03092586249113083, -0.007282607723027468, 0.03844574838876724, -0.008504028432071209, 0.08764616400003433, 0.037653543055057526, 0.01522647961974144, 0.0409034788608551, -0.05847250670194626, 0.05021270364522934, 0.05126671865582466, -0.04422769322991371, -0.08685361593961716, 0.003227476729080081, 0.004578131716698408, 0.05973103642463684, 0.08467425405979156, -0.04853644594550133, -0.01048202347010374, -0.010526526719331741, 0.024614492431282997, -0.04642181843519211, -0.09703759849071503, -0.07001469284296036, 0.10616669058799744, 0.053978294134140015, -0.023879986256361008, -0.04874569922685623, 0.06601633131504059, -0.08058817684650421, -0.05896075442433357, -0.13508038222789764, -0.043088026344776154, 0.000995646696537733, 2.2714218767603145e-33, -0.020835980772972107, 0.019444383680820465, -0.005697805434465408, -0.09005845338106155, -0.001646201591938734, -0.046056147664785385, -0.0546686053276062, -0.12869136035442352, -0.06599701941013336, 0.024778585880994797, 0.0072272708639502525, -0.0940731093287468, 0.0002973833179567009, 0.04018126428127289, 0.14713451266288757, -0.0014650840312242508, -0.0826813355088234, -0.04341892525553703, 0.003841859521344304, -0.003418280743062496, -0.07854100316762924, 0.05515064299106598, 0.04782014340162277, -0.013135364279150963, -0.023230714723467827, -0.07441858947277069, 0.023318957537412643, -0.044987455010414124, -0.04983216151595116, 0.010528222657740116, 0.0838194340467453, 0.01037422101944685, 0.02928449958562851, -0.03653614968061447, -0.074612557888031, 0.020795149728655815, -0.0422525480389595, -0.0498194620013237, 0.057267580181360245, 0.015563633292913437, 0.06329477578401566, -0.03759701922535896, 0.09781251847743988, 0.025663431733846664, -0.05832948163151741, 0.06561121344566345, 0.061049677431583405, 0.054767780005931854, -0.0033835957292467356, 0.02143270894885063, 0.012685918249189854, 0.06992939114570618, -0.011592091992497444, -0.16527609527111053, -0.011534648947417736, 0.0042526088654994965, 0.052953045815229416, -0.055317044258117676, -0.01145183015614748, 0.05402963235974312, -0.006338823586702347, 0.05134459584951401, 0.04337993636727333, -0.05226071923971176, -0.026053668931126595, -0.03815265744924545, 0.0782470703125, -0.025127027183771133, 0.008668338879942894, 0.022089404985308647, -0.09048391878604889, 0.09108150005340576, 0.048597417771816254, 0.04186404123902321, 0.020110396668314934, -0.02498611807823181, 0.01974564418196678, 0.05133293941617012, 0.06044933199882507, -0.05958566442131996, -0.04212716966867447, -0.07524938136339188, -0.0054306527599692345, -0.032192882150411606, 0.039365340024232864, -0.02071319706737995, -0.02603195235133171, -0.014177943579852581, 0.008818913251161575, 0.029714321717619896, 0.047859568148851395, -0.05102498456835747, -0.08445559442043304, 0.0259105134755373, -0.0004852373094763607, -4.077412642784298e-33, 0.022540751844644547, 0.013003397732973099, 0.04559183493256569, 0.062101636081933975, -0.040584154427051544, 0.053073134273290634, -0.08117417246103287, 0.012202028185129166, 0.01164914295077324, 0.0940205305814743, 0.05236241966485977, 0.03606709465384483, 0.006249205209314823, 0.04096098989248276, 0.06960918009281158, 0.03048417530953884, 0.042175084352493286, 0.02744436077773571, -0.05423027649521828, -0.08815961331129074, 0.0595165379345417, -0.06520593166351318, 0.003464370034635067, -0.042547427117824554, -0.0780482292175293, -0.0036021023988723755, 0.027739044278860092, -0.020817967131733894, -0.0419309139251709, -0.0026255303528159857, 0.012655106373131275, -0.023431112989783287, -0.07530327141284943, -0.0517398975789547, -0.011056969873607159, -0.06054738536477089, -0.04607042297720909, 0.0597958117723465, 0.042488787323236465, -0.060952261090278625, 0.016426363959908485, -0.013031595386564732, 0.06506296992301941, 0.003462886204943061, -0.057668305933475494, -0.0703829750418663, -0.06961894780397415, 0.05947813764214516, -0.05941075459122658, -0.00340747507289052, -0.009183846414089203, 0.040401216596364975, 0.038409847766160965, -0.015584977343678474, 0.005268055014312267, 0.019547075033187866, -0.10211063176393509, -0.02292485535144806, -0.061357829719781876, -0.05041201785206795, -0.05535493418574333, 0.09845820814371109, -0.003922868520021439, 0.03788936883211136, 0.0520150400698185, 0.024573203176259995, -0.052109092473983765, -0.056078847497701645, -0.04373156279325485, 0.05828504636883736, 0.06998252868652344, 0.004192084539681673, -0.011104214936494827, -0.03741515055298805, -0.03904280811548233, -0.01949825882911682, 0.017010901123285294, 0.004395828116685152, -0.03187746927142143, 0.07295704632997513, 0.07698697596788406, 0.00701597984880209, 0.03406830132007599, -0.006441427860409021, 0.06518373638391495, 0.07902119308710098, -0.044539082795381546, 0.10940886288881302, -0.020032770931720734, 0.057561181485652924, 0.12484627962112427, 0.08077145367860794, -0.10618606954813004, 0.033728983253240585, -0.00510417902842164, -3.23462785445372e-08, -0.048488128930330276, -0.016018005087971687, -0.04109257459640503, -0.014666708186268806, -0.05356503278017044, 0.008911820128560066, 0.010779100470244884, 0.007690900005400181, 0.013321703299880028, -0.0009872508235275745, 0.018134726211428642, -0.037340905517339706, -0.04214620962738991, 0.08042184263467789, -0.027734100818634033, -0.06564615666866302, -0.045965902507305145, 0.08726167678833008, -0.06597186625003815, -0.013915765099227428, -0.03980376571416855, -0.005563430022448301, 0.07671931385993958, 0.05692272260785103, -0.05079563707113266, 0.0270135048776865, -0.008341223932802677, -0.03033352643251419, 0.010472777299582958, 0.06287212669849396, 0.0015228738775476813, 0.056547053158283234, -0.018671594560146332, -0.057460445910692215, -0.0747397243976593, -0.009441651403903961, 0.0017514049541205168, -0.09026125073432922, 0.04985814541578293, -0.008639723062515259, 0.007795941550284624, -0.06974046677350998, 0.07303695380687714, 0.039134345948696136, 0.06560133397579193, -0.13380663096904755, -0.010383693501353264, 0.0009092314867302775, -0.06193683668971062, 0.02789519727230072, -0.036339085549116135, -0.04760896787047386, 0.01480646152049303, 0.03341684862971306, -0.020672008395195007, -0.044537436217069626, -0.08806760609149933, -0.0018533698748797178, -0.0043679638765752316, 0.06391018629074097, -0.005339599214494228, -0.1570952832698822, 0.04734744504094124, 0.08656676858663559], "id": "3f3f97bb-5faf-57df-a9ff-1af24e2b1045"}
{"index": {"_id": "750caa3d-6264-53ca-8ce1-94118a1d8951"}}
{"actual_price": "2999", "average_rating": "3.9", "brand": "York", "category": "Clothing and Accessories", "crawled_at": "10-02-2021 20:11:53", "description": "Yorker trackpants made from 100% rich combed cotton giving it a rich look.Designed for Comfort,Skin friendly fabric,itch-free waistband & great for all year round use Proudly made in India", "discount": "68% off", "images": ["https://rukminim1.flixcart.com/image/128/128/jr3t5e80/track-pant/d/w/b/l-1005combo1-yorker-original-imafczg3zcuajpgb.jpeg?q=70", "https://rukminim1.flixcart.com/image/128/128/jr58l8w0/track-pant/d/w/b/l-1005combo1-yorker-original-imafczg3yyz6zgab.jpeg?q=70"], "out_of_stock": false, "pid": "TKPFCZ9EVXKBSUD7", "product_details": [{"Style Code": "1005COMBO1"}, {"Closure": "Drawstring, Elastic"}, {"Pockets": "Side Pockets"}, {"Fabric": "Cotton Blend"}, {"Pattern": "Solid"}, {"Color": "Brown, Grey"}], "seller": "Shyam Enterprises", "selling_price": "943", "sub_category": "Bottomwear", "title": "Solid Men Brown, Grey Track Pants", "url": "https://www.flipkart.com/yorker-solid-men-brown-grey-track-pants/p/itm1a8387617b373?pid=TKPFCZ9EVXKBSUD7&lid=LSTTKPFCZ9EVXKBSUD7O1SCSG&marketplace=FLIPKART&srno=b_1_5&otracker=browse&fm=organic&iid=177a46eb-d053-4732-b3de-fcad6ff59cbd.TKPFCZ9EVXKBSUD7.SEARCH&ssid=utkd4t3gb40000001612415717799", "title_vector": [-0.043190713971853256, 0.010543550364673138, -0.010625965893268585, 0.0406278595328331, 0.007654455956071615, -0.029844563454389572, 0.06915934383869171, -0.054139599204063416, -0.0979829654097557, 0.01127250399440527, -0.07112386077642441, -0.03607701510190964, -0.05225249379873276, -0.03232570365071297, -0.04932407662272453, -0.04109378904104233, 0.054367806762456894, -0.003910276107490063, -0.03653385117650032, -0.016776200383901596, -0.0021525323390960693, -0.023329345509409904, -0.05693095549941063, 0.013436934910714626, -0.12780892848968506, 0.0372493639588356, -0.004562698770314455, 0.022719891741871834, -0.06830032914876938, -0.045373253524303436, -0.06558685004711151, -0.010534635744988918, 0.0031344660092145205, -0.0316237173974514, 0.005472212564200163, -0.14287716150283813, -0.005331468768417835, -0.03168780356645584, -0.04624437540769577, -0.024720285087823868, -0.01698063686490059, -0.09809853881597519, -0.00048153402167372406, 0.0910181999206543, 0.017247457057237625, 0.05748961493372917, 0.017027486115694046, 0.01857798919081688, 0.016780095174908638, 0.06165481358766556, 0.03615158423781395, -0.05805480107665062, 0.06459058821201324, 0.04949106648564339, 0.024521853774785995, 0.010828748345375061, -0.031328991055488586, -0.007340630050748587, -0.005375392735004425, -0.0557100810110569, 0.01910017989575863, 0.014194115065038204, -0.02442614920437336, -0.008096053265035152, 0.04734939709305763, 0.04573870822787285, -0.013023589737713337, 0.05232532322406769, -0.014987166039645672, -8.137265467667021e-06, 0.0628369078040123, -0.008578749373555183, -0.07126495987176895, -0.0056634689681231976, 0.003355950815603137, 0.03783782944083214, -0.047136254608631134, -0.04047311097383499, -0.060151081532239914, -0.023174583911895752, -0.04618426039814949, -0.007982712239027023, 0.011849482543766499, -0.0024918257258832455, 0.011568533256649971, 0.001816783333197236, 0.026719175279140472, 0.04275699332356453, -0.05690309405326843, 0.06405618786811829, -0.07311588525772095, 0.06272344291210175, -0.03421015664935112, -0.016963543370366096, 0.013912688940763474, 0.020908484235405922, -0.014865748584270477, 0.014813590794801712, -0.03144733980298042, 0.04515668749809265, 0.04614662751555443, -0.022936426103115082, 0.12904614210128784, -0.008034225553274155, -0.045557644218206406, -0.0685681700706482, -0.026311326771974564, 0.04552372545003891, 0.10481790453195572, 0.028703374788165092, 0.01817227713763714, 0.020788436755537987, -0.0328664556145668, 0.036602992564439774, 0.019958658143877983, -0.09290995448827744, -0.07001885026693344, 0.11121870577335358, 0.007276895456016064, -0.03293471783399582, -0.003315165638923645, 0.05380628630518913, -0.03388114646077156, 0.024169882759451866, -0.1019427627325058, 0.004784340970218182, 0.03058674745261669, -1.958730461208001e-33, 0.01472220104187727, -0.02137335017323494, 0.00784970261156559, 0.02643641084432602, 0.0026073013432323933, -0.04181212931871414, -0.055090662091970444, -0.11741579324007034, -0.027296245098114014, 0.05302876979112625, -0.005457868333905935, 0.012492457404732704, -0.007106193341314793, -0.01637980528175831, 0.0504566989839077, -0.019948644563555717, -0.01329056080430746, -0.01285775937139988, -0.04091662913560867, 0.015158409252762794, -0.06746804714202881, 0.07715623825788498, -0.01720048114657402, -0.01986226625740528, 0.053709812462329865, -0.04466453567147255, -0.0597868412733078, -0.01803085207939148, 0.0023012086749076843, 0.0008201185264624655, -0.017947420477867126, -0.0019162397366017103, 0.06457791477441788, 0.06905773282051086, -0.06402117013931274, -0.031893372535705566, -0.04724009707570076, 0.020230958238244057, 0.07548800855875015, -0.0023798751644790173, 0.08551622182130814, 0.021975643932819366, 0.002565022325143218, 0.029693428426980972, -0.00939639750868082, 0.05821532383561134, 0.07404040545225143, 0.05804102495312691, 0.01327029149979353, 0.025297613814473152, -0.0344211608171463, 0.030977295711636543, -0.006181884091347456, -0.1223578080534935, -0.045764997601509094, 0.001803302438929677, 0.02333604171872139, 0.048030607402324677, -0.03813358023762703, 0.00710115022957325, 0.11984996497631073, 0.09466394782066345, 0.0099618686363101, -0.06100555136799812, 0.020510295405983925, -0.037015512585639954, -0.03711947053670883, -0.014880572445690632, 0.03342905268073082, 0.032116010785102844, -0.0343913771212101, -0.029589081183075905, 0.1579536497592926, -0.008029970340430737, 0.09380663931369781, -0.003907785285264254, -0.036186497658491135, 0.006997657474130392, -0.024707531556487083, -0.023357629776000977, 0.008854413405060768, -0.014636361040174961, -0.08861595392227173, -0.030903220176696777, -0.04516853392124176, 0.06141895428299904, -0.04021484777331352, 0.042410921305418015, 0.024577351287007332, -0.018254060298204422, -0.08047836273908615, -0.041238073259592056, -0.058209214359521866, 0.02649606205523014, -0.006648631300777197, -6.163430499580633e-34, 0.08377360552549362, 0.08478377014398575, 0.011433801613748074, 0.08558477461338043, 0.09830053150653839, 0.025249168276786804, -0.022503556683659554, 0.0299228448420763, 0.06447431445121765, 0.08960593491792679, 0.13573479652404785, -0.006474116817116737, -0.008905566297471523, 0.05089610815048218, 0.08144928514957428, -0.00854284968227148, 0.02218729816377163, 0.005571193993091583, -0.041910357773303986, 0.013718570582568645, 0.07323436439037323, -0.08340145647525787, 0.006603487767279148, -0.009376182220876217, -0.03351181745529175, 0.041104353964328766, 0.04835351184010506, -0.02646913193166256, -0.09932153671979904, 0.06057681143283844, -0.015235683880746365, 0.03154690936207771, -0.04230445995926857, -0.018507858738303185, -0.030513392761349678, -0.07115638256072998, 0.0052477638237178326, 0.15237075090408325, -0.0029619811102747917, -0.009542211890220642, -0.003665035357698798, 0.03130233287811279, 0.06959670782089233, 0.11186526715755463, -0.06997663527727127, -0.07010076195001602, -0.04799185320734978, 0.0006310680764727294, -0.06251773238182068, -0.004057975951582193, -0.0032539931125938892, 0.05313393473625183, -0.03229407221078873, -0.041283827275037766, -0.0292835533618927, -0.040725719183683395, -0.02829853817820549, 0.058285217732191086, -0.06305694580078125, 0.11151450127363205, -0.0747818872332573, 0.07654257118701935, 0.04505256190896034, -0.0039002210833132267, 0.011598464101552963, 0.035587821155786514, -0.053162068128585815, -0.07774729281663895, -0.04639054089784622, 0.03317534923553467, -0.01700158230960369, -0.12169905006885529, 0.07768186926841736, -0.0573359839618206, 0.007569632958620787, -0.10021650046110153, 0.006312931887805462, 0.03852562978863716, 0.014551369473338127, -0.02768155373632908, 0.050624266266822815, 0.0057352809235453606, 0.06754276901483536, 0.038858890533447266, -0.0021380456164479256, 0.10754265636205673, -0.055423445999622345, 0.0772106871008873, 0.06557406485080719, 0.04543785750865936, -0.01184611115604639, 0.05062742158770561, 0.034338343888521194, 0.025004658848047256, -0.14250075817108154, -1.5096768279931894e-08, -0.0005272841663099825, -0.011513862758874893, -0.05904891714453697, 0.04255184158682823, -0.03729868307709694, 0.013150946237146854, -0.03704787790775299, 0.018499959260225296, 0.09552173316478729, 0.04188350960612297, 0.013141090981662273, -0.04085434973239899, -0.006047225557267666, -0.003431683871895075, -0.0006466003251262009, -0.016005245968699455, -0.08720709383487701, 0.009414682164788246, -0.018880745396018028, -0.05716580152511597, 0.041638441383838654, -0.05598901957273483, 0.030727693811058998, 0.1355811059474945, 0.04862365126609802, 0.006836083717644215, -0.0008551959181204438, -0.06611218303442001, -0.004426613450050354, 0.1275332272052765, 0.013375544920563698, 0.0787866860628128, -0.0027668739203363657, -0.05654282495379448, 0.07396353036165237, -0.05681103467941284, -0.0190382469445467, -0.0007483569206669927, 0.03996923938393593, -0.05605775862932205, -0.05582534149289131, -0.06997901946306229, 0.014203893952071667, -0.023784244433045387, 0.05338321253657341, -0.10779077559709549, -0.005671801511198282, 0.08368838578462601, -0.05447477474808693, 0.011368615552783012, -0.014501012861728668, -0.0255852360278368, 0.010926955379545689, 0.08083736896514893, 0.02444424293935299, -0.056705325841903687, -0.008202106691896915, 0.058272454887628555, 0.006106426939368248, -0.007145923096686602, -0.006179856602102518, -0.12071122974157333, -0.032799236476421356, 0.013504077680408955], "description_vector": [0.010161378420889378, 0.03702054172754288, 0.015739209949970245, 0.0011658361181616783, 0.07188732922077179, -0.03905102238059044, 0.08338362723588943, 0.0315282866358757, -0.03263932093977928, 0.042967427521944046, -0.025904344394803047, 0.017779702320694923, -0.0933217778801918, 0.0326097309589386, -0.04391865059733391, 0.01360283326357603, 0.047254595905542374, -0.00011384738172637299, -0.0005159328575246036, -0.044058315455913544, 0.016640568152070045, -0.07310980558395386, 0.10624560713768005, 0.06056896969676018, -0.0021399068646132946, -0.032774172723293304, 0.02251889742910862, -0.012389992363750935, -0.014869646169245243, -0.004939723759889603, -0.049328166991472244, 0.04858872666954994, 0.034833502024412155, 0.025517374277114868, -0.014575554057955742, -0.017493491992354393, 0.08115442842245102, 0.027120918035507202, 0.05032927542924881, 0.02507568895816803, -0.037313755601644516, -0.05492451414465904, 0.016460513696074486, 0.027878237888216972, 0.011246489360928535, 0.013711998239159584, -0.003082460956647992, 0.11032824963331223, -0.05893594026565552, 0.06308192759752274, 0.07183311134576797, -0.011128542944788933, 0.04002918675541878, -0.04802154377102852, -0.00827194657176733, -0.04036792367696762, -0.035770855844020844, 0.05011511594057083, -0.013298486359417439, -0.044574420899152756, 0.011838864535093307, -0.002894731005653739, -0.08008749037981033, 0.03864732012152672, 0.051154691725969315, -0.061857521533966064, -0.017183657735586166, 0.07069447636604309, 0.010612710379064083, 0.0014670860255137086, -0.002946153748780489, 0.02350582554936409, 0.016878938302397728, 0.0632895678281784, -0.058033015578985214, 0.0034876116551458836, 0.016017170622944832, 0.071796715259552, -0.06535032391548157, 0.03986765816807747, -0.007038006093353033, 0.017479082569479942, 0.08130983263254166, 0.07145143300294876, -0.012097056955099106, 0.03068615309894085, -0.016431594267487526, 0.005457960534840822, 0.024317126721143723, -0.10093965381383896, -0.01196349784731865, 0.04783400893211365, -0.08667395263910294, -0.03092586249113083, -0.007282607723027468, 0.03844574838876724, -0.008504028432071209, 0.08764616400003433, 0.037653543055057526, 0.01522647961974144, 0.0409034788608551, -0.05847250670194626, 0.05021270364522934, 0.05126671865582466, -0.04422769322991371, -0.08685361593961716, 0.003227476729080081, 0.004578131716698408, 0.05973103642463684, 0.08467425405979156, -0.04853644594550133, -0.01048202347010374, -0.010526526719331741, 0.024614492431282997, -0.04642181843519211, -0.09703759849071503, -0.07001469284296036, 0.10616669058799744, 0.053978294134140015, -0.023879986256361008, -0.04874569922685623, 0.06601633131504059, -0.08058817684650421, -0.05896075442433357, -0.13508038222789764, -0.043088026344776154, 0.000995646696537733, 2.2714218767603145e-33, -0.020835980772972107, 0.019444383680820465, -0.005697805434465408, -0.09005845338106155, -0.001646201591938734, -0.046056147664785385, -0.0546686053276062, -0.12869136035442352, -0.06599701941013336, 0.024778585880994797, 0.0072272708639502525, -0.0940731093287468, 0.0002973833179567009, 0.04018126428127289, 0.14713451266288757, -0.0014650840312242508, -0.0826813355088234, -0.04341892525553703, 0.003841859521344304, -0.003418280743062496, -0.07854100316762924, 0.05515064299106598, 0.04782014340162277, -0.013135364279150963, -0.023230714723467827, -0.07441858947277069, 0.023318957537412643, -0.044987455010414124, -0.04983216151595116, 0.010528222657740116, 0.0838194340467453, 0.01037422101944685, 0.02928449958562851, -0.03653614968061447, -0.074612557888031, 0.020795149728655815, -0.0422525480389595, -0.0498194620013237, 0.057267580181360245, 0.015563633292913437, 0.06329477578401566, -0.03759701922535896, 0.09781251847743988, 0.025663431733846664, -0.05832948163151741, 0.06561121344566345, 0.061049677431583405, 0.054767780005931854, -0.0033835957292467356, 0.02143270894885063, 0.012685918249189854, 0.06992939114570618, -0.011592091992497444, -0.16527609527111053, -0.011534648947417736, 0.0042526088654994965, 0.052953045815229416, -0.055317044258117676, -0.01145183015614748, 0.05402963235974312, -0.006338823586702347, 0.05134459584951401, 0.04337993636727333, -0.05226071923971176, -0.026053668931126595, -0.03815265744924545, 0.0782470703125, -0.025127027183771133, 0.008668338879942894, 0.022089404985308647, -0.09048391878604889, 0.09108150005340576, 0.048597417771816254, 0.04186404123902321, 0.020110396668314934, -0.02498611807823181, 0.01974564418196678, 0.05133293941617012, 0.06044933199882507, -0.05958566442131996, -0.04212716966867447, -0.07524938136339188, -0.0054306527599692345, -0.032192882150411606, 0.039365340024232864, -0.02071319706737995, -0.02603195235133171, -0.014177943579852581, 0.008818913251161575, 0.029714321717619896, 0.047859568148851395, -0.05102498456835747, -0.08445559442043304, 0.0259105134755373, -0.0004852373094763607, -4.077412642784298e-33, 0.022540751844644547, 0.013003397732973099, 0.04559183493256569, 0.062101636081933975, -0.040584154427051544, 0.053073134273290634, -0.08117417246103287, 0.012202028185129166, 0.01164914295077324, 0.0940205305814743, 0.05236241966485977, 0.03606709465384483, 0.006249205209314823, 0.04096098989248276, 0.06960918009281158, 0.03048417530953884, 0.042175084352493286, 0.02744436077773571, -0.05423027649521828, -0.08815961331129074, 0.0595165379345417, -0.06520593166351318, 0.003464370034635067, -0.042547427117824554, -0.0780482292175293, -0.0036021023988723755, 0.027739044278860092, -0.020817967131733894, -0.0419309139251709, -0.0026255303528159857, 0.012655106373131275, -0.023431112989783287, -0.07530327141284943, -0.0517398975789547, -0.011056969873607159, -0.06054738536477089, -0.04607042297720909, 0.0597958117723465, 0.042488787323236465, -0.060952261090278625, 0.016426363959908485, -0.013031595386564732, 0.06506296992301941, 0.003462886204943061, -0.057668305933475494, -0.0703829750418663, -0.06961894780397415, 0.05947813764214516, -0.05941075459122658, -0.00340747507289052, -0.009183846414089203, 0.040401216596364975, 0.038409847766160965, -0.015584977343678474, 0.005268055014312267, 0.019547075033187866, -0.10211063176393509, -0.02292485535144806, -0.061357829719781876, -0.05041201785206795, -0.05535493418574333, 0.09845820814371109, -0.003922868520021439, 0.03788936883211136, 0.0520150400698185, 0.024573203176259995, -0.052109092473983765, -0.056078847497701645, -0.04373156279325485, 0.05828504636883736, 0.06998252868652344, 0.004192084539681673, -0.011104214936494827, -0.03741515055298805, -0.03904280811548233, -0.01949825882911682, 0.017010901123285294, 0.004395828116685152, -0.03187746927142143, 0.07295704632997513, 0.07698697596788406, 0.00701597984880209, 0.03406830132007599, -0.006441427860409021, 0.06518373638391495, 0.07902119308710098, -0.044539082795381546, 0.10940886288881302, -0.020032770931720734, 0.057561181485652924, 0.12484627962112427, 0.08077145367860794, -0.10618606954813004, 0.033728983253240585, -0.00510417902842164, -3.23462785445372e-08, -0.048488128930330276, -0.016018005087971687, -0.04109257459640503, -0.014666708186268806, -0.05356503278017044, 0.008911820128560066, 0.010779100470244884, 0.007690900005400181, 0.013321703299880028, -0.0009872508235275745, 0.018134726211428642, -0.037340905517339706, -0.04214620962738991, 0.08042184263467789, -0.027734100818634033, -0.06564615666866302, -0.045965902507305145, 0.08726167678833008, -0.06597186625003815, -0.013915765099227428, -0.03980376571416855, -0.005563430022448301, 0.07671931385993958, 0.05692272260785103, -0.05079563707113266, 0.0270135048776865, -0.008341223932802677, -0.03033352643251419, 0.010472777299582958, 0.06287212669849396, 0.0015228738775476813, 0.056547053158283234, -0.018671594560146332, -0.057460445910692215, -0.0747397243976593, -0.009441651403903961, 0.0017514049541205168, -0.09026125073432922, 0.04985814541578293, -0.008639723062515259, 0.007795941550284624, -0.06974046677350998, 0.07303695380687714, 0.039134345948696136, 0.06560133397579193, -0.13380663096904755, -0.010383693501353264, 0.0009092314867302775, -0.06193683668971062, 0.02789519727230072, -0.036339085549116135, -0.04760896787047386, 0.01480646152049303, 0.03341684862971306, -0.020672008395195007, -0.044537436217069626, -0.08806760609149933, -0.0018533698748797178, -0.0043679638765752316, 0.06391018629074097, -0.005339599214494228, -0.1570952832698822, 0.04734744504094124, 0.08656676858663559], "id": "750caa3d-6264-53ca-8ce1-94118a1d8951"}
{"index": {"_id": "9af4ac75-230b-5d51-8bbf-2ffb19aaa763"}}
{"actual_price": "4499", "average_rating": "3.8", "brand": "York", "category": "Clothing and Accessories", "crawled_at": "10-02-2021 20:11:54", "description": "Yorker trackpants made from 100% rich combed cotton giving it a rich look.Designed for Comfort,Skin friendly fabric,itch-free waistband & great for all year round use Proudly made in India", "discount": "74% off", "images": ["https://rukminim1.flixcart.com/image/128/128/jr3t5e80/track-pant/w/d/a/m-1005combo8-yorker-original-imafczgcj7fh2rcx.jpeg?q=70", "https://rukminim1.flixcart.com/image/128/128/jr58l8w0/track-pant/w/d/a/l-1005combo8-yorker-original-imafczg3pgtxgraq.jpeg?q=70"], "out_of_stock": false, "pid": "TKPFCZ9EFK9DNWDA", "product_details": [{"Style Code": "1005COMBO12"}, {"Closure": "Elastic"}, {"Pockets": "Side Pockets"}, {"Fabric": "Cotton Blend"}, {"Pattern": "Solid"}, {"Color": "Multicolor"}], "seller": "Shyam Enterprises", "selling_price": "1,169", "sub_category": "Bottomwear", "title": "Solid Men Multicolor Track Pants", "url": "https://www.flipkart.com/yorker-solid-men-multicolor-track-pants/p/itmd12f548703177?pid=TKPFCZ9EFK9DNWDA&lid=LSTTKPFCZ9EFK9DNWDAUSCZVB&marketplace=FLIPKART&srno=b_1_6&otracker=browse&fm=organic&iid=177a46eb-d053-4732-b3de-fcad6ff59cbd.TKPFCZ9EFK9DNWDA.SEARCH&ssid=utkd4t3gb40000001612415717799", "title_vector": [-0.01750304363667965, -0.011636498384177685, -0.02210037223994732, 0.01183471828699112, -0.021814405918121338, 0.016212550923228264, 0.06356656551361084, -0.05682499334216118, -0.06808449327945709, -0.020830078050494194, -0.11096034198999405, 0.027975311502814293, -0.0026677637360990047, -0.020863493904471397, -0.011010178364813328, 0.007845406420528889, 0.021286573261022568, 0.04444942623376846, -0.05303753539919853, -0.019685113802552223, 0.01539368275552988, -0.08217310905456543, -0.024783244356513023, 0.014238819479942322, -0.13691852986812592, -0.005677407141774893, 0.03179799020290375, 0.04830686375498772, -0.04054674878716469, -0.04142273962497711, -0.036826685070991516, 0.014080044813454151, -0.00927741639316082, -0.00919408816844225, -0.007426771335303783, -0.12157557159662247, 0.005567875225096941, -0.040645960718393326, -0.059138767421245575, 0.02540738135576248, -0.03611698001623154, -0.03978604078292847, 0.00906510092318058, 0.04334618151187897, 0.04641823098063469, 0.02759166620671749, 0.015160168521106243, -0.00011770770652219653, 0.01607673056423664, 0.005848983768373728, 0.05912134051322937, -0.060740936547517776, 0.056861039251089096, 0.07618957757949829, 0.011677095666527748, 0.007041571661829948, -0.022512802854180336, -0.008038055151700974, -0.0017100051045417786, -0.06221436709165573, -0.02529086545109749, 0.04047548025846481, -0.029896382242441177, -0.02881051041185856, 0.06359802931547165, 0.05822062864899635, -0.04094484820961952, 0.05086110532283783, -0.018712639808654785, 0.05990203469991684, 0.05880223959684372, -0.003959069028496742, -0.02649875357747078, -0.0060746935196220875, 0.007804008666425943, 0.06423428654670715, -0.020127082243561745, 0.006429041735827923, -0.11748234182596207, -0.03823646530508995, 0.0008613445679657161, -0.032074104994535446, -0.01470003928989172, -0.004438898526132107, 0.07909102737903595, 0.012715947814285755, 0.0029993653297424316, 0.0001949079887708649, -0.0718197152018547, 0.057225607335567474, -0.06931982934474945, 0.09004122763872147, -0.02485048584640026, -0.0433402955532074, -0.028812244534492493, 0.016788966953754425, -0.011409476399421692, 0.004664268344640732, -0.0041678594425320625, 0.004854964558035135, 0.05297689139842987, -0.06114526838064194, 0.13318555057048798, 0.00830574706196785, -0.01139608584344387, -0.06280948221683502, -0.005770341493189335, 0.0982920303940773, 0.08161940425634384, 0.053153470158576965, 0.0322815366089344, -0.014658047817647457, 0.02445538155734539, 0.01882985606789589, -0.027387915179133415, -0.036688849329948425, -0.11347228288650513, 0.09919878840446472, 0.042588990181684494, -0.01889907754957676, -0.0662468671798706, -0.0077499765902757645, -0.030892428010702133, 0.020862936973571777, -0.07779428362846375, 0.008455955423414707, 0.04834817722439766, -1.248110330673342e-33, 0.015834936872124672, 0.0007315975381061435, 0.035135481506586075, 0.0059440843760967255, 0.00901595689356327, -0.026639016345143318, -0.037854623049497604, -0.11475097388029099, -0.042414601892232895, 0.026692675426602364, 0.043176766484975815, 0.01352092158049345, -0.008510426618158817, 0.04765365645289421, 0.050411779433488846, -0.06222156807780266, -0.011144760996103287, -0.03002299554646015, -0.04036001116037369, 0.04554446414113045, -0.08960933983325958, 0.07712991535663605, 0.012423399835824966, -0.02150545082986355, 0.07262971997261047, -0.0024643586948513985, -0.015210946090519428, 0.010569116100668907, 0.00901226606220007, 0.016953855752944946, 0.03385021165013313, 0.04760349541902542, 0.0378803089261055, 0.07334811240434647, -0.07590755075216293, -0.026236871257424355, -0.07234593480825424, 0.027257883921265602, 0.04749417304992676, 0.04547105357050896, 0.03861740976572037, -0.0008820883231237531, 0.015317020937800407, 0.013024263083934784, 0.019197961315512657, 0.04547232389450073, 0.07055824995040894, 0.07124454528093338, -0.016479136422276497, 0.04674027860164642, -0.05141697824001312, 0.027943115681409836, 0.003999900538474321, -0.13684521615505219, 0.005376370623707771, -0.058037031441926956, 0.02055359072983265, 0.018799735233187675, 0.012884076684713364, 0.012023668736219406, 0.0472080260515213, 0.08926640450954437, -0.012286555022001266, -0.05913674086332321, 0.0016122438246384263, -0.028077799826860428, 0.018334606662392616, -0.013492390513420105, 0.05977679416537285, 0.024298565462231636, -0.03381715342402458, -0.03989213705062866, 0.1003326028585434, -0.0203087255358696, 0.11450298875570297, -0.02901851199567318, -0.001018340582959354, 0.0050201439298689365, 0.005195006728172302, -0.005942627787590027, -0.03613255172967911, -0.009769286960363388, -0.028770530596375465, -0.03607276454567909, -0.05543437600135803, 0.06410343945026398, -0.03306041285395622, 0.03838576748967171, -0.029280010610818863, -0.0198660921305418, -0.02397162653505802, -0.037625838071107864, -0.041713859885931015, 0.0667421743273735, -0.024618620052933693, 2.3371866875298054e-35, 0.0547250360250473, 0.09833406656980515, 0.023227699100971222, 0.114693783223629, 0.09528061747550964, -0.00787738524377346, -0.017212511971592903, 0.04436745494604111, 0.07465691864490509, 0.09633439779281616, 0.1312452107667923, 0.039987143129110336, -0.014550543390214443, 0.024223707616329193, 0.03526420146226883, -0.03982486575841904, 0.021283334121108055, 0.046424709260463715, 0.015092809684574604, 0.009193169884383678, 0.05549049377441406, -0.07880650460720062, 0.04008752852678299, -0.03943280875682831, -0.047696471214294434, 0.03393804654479027, 0.039981186389923096, 0.001193762756884098, -0.07342305034399033, 0.06613484025001526, 0.021755889058113098, 0.02684456668794155, -0.03949245437979698, -0.006181076634675264, -0.03133787214756012, -0.08354733884334564, 0.0016974640311673284, 0.13843943178653717, 0.018883589655160904, 0.055436912924051285, -0.025598129257559776, -0.002969038672745228, 0.05303864926099777, 0.049535591155290604, -0.030078742653131485, -0.07182574272155762, -0.06337060034275055, 0.02917587384581566, -0.11465952545404434, -0.032529328018426895, -0.0671318992972374, 0.053733017295598984, -0.019395705312490463, -0.03990590199828148, 0.05077434703707695, -0.04348047822713852, -0.03553483635187149, 0.018783731386065483, -0.07052040100097656, 0.1043209508061409, -0.0567016527056694, 0.10824528336524963, 0.048412784934043884, 0.0025807437486946583, 0.036881234496831894, 0.06869471073150635, -0.023770291358232498, -0.09511475265026093, -0.06613293290138245, 0.02176239714026451, 0.01872532069683075, -0.10404399782419205, 0.06726082414388657, -0.0480915829539299, 0.015010988339781761, -0.10414595156908035, -0.01328373048454523, 0.07015544176101685, 0.01868368498980999, 0.023249415680766106, 0.040593184530735016, -0.03949554264545441, 0.06833836436271667, 0.01033394318073988, -0.027217824012041092, 0.12147243320941925, -0.06436050683259964, 0.0862777903676033, 0.05496486276388168, 0.008517256006598473, 0.052893295884132385, 0.0704735592007637, 0.054488617926836014, -0.015731483697891235, -0.07873641699552536, -1.398363380644696e-08, -0.0065547628328204155, -0.0069536990486085415, 0.00549152959138155, -0.00998165924102068, -0.03376365825533867, -0.01586337573826313, -0.009456240572035313, -0.02035215124487877, 0.05637226998806, 0.07385769486427307, -0.0003603680816013366, -0.04574840888381004, -0.03704368695616722, 0.02749405801296234, -0.04098350927233696, -0.02366815134882927, -0.11039827018976212, 0.023931892588734627, -0.052821334451436996, -0.009192668832838535, -0.0038785706274211407, -0.024116192013025284, 0.05437786877155304, 0.10146529972553253, 0.036558277904987335, 0.007580878678709269, -0.020219620317220688, -0.0733318105340004, 0.0005717526073567569, 0.09992311149835587, -0.0013204521965235472, 0.04130839556455612, -0.034773293882608414, -0.08077628165483475, 0.016257617622613907, -0.0645580142736435, -0.037633273750543594, 0.03841284289956093, 0.03240961208939552, -0.059219975024461746, -0.02973298728466034, -0.07030455023050308, 0.05138317123055458, 0.008495536632835865, 0.11956316232681274, -0.14337019622325897, -0.0009918012656271458, 0.057628240436315536, -0.08532336354255676, 0.01932595670223236, -0.006227601785212755, -0.02223101444542408, -0.008773605339229107, 0.04066935181617737, 0.015389544889330864, -0.12571904063224792, -0.06966270506381989, 0.0827946811914444, 0.026196368038654327, 0.009410915896296501, -0.02995387464761734, -0.1264168620109558, -0.039235103875398636, 0.011955220252275467], "description_vector": [0.010161378420889378, 0.03702054172754288, 0.015739209949970245, 0.0011658361181616783, 0.07188732922077179, -0.03905102238059044, 0.08338362723588943, 0.0315282866358757, -0.03263932093977928, 0.042967427521944046, -0.025904344394803047, 0.017779702320694923, -0.0933217778801918, 0.0326097309589386, -0.04391865059733391, 0.01360283326357603, 0.047254595905542374, -0.00011384738172637299, -0.0005159328575246036, -0.044058315455913544, 0.016640568152070045, -0.07310980558395386, 0.10624560713768005, 0.06056896969676018, -0.0021399068646132946, -0.032774172723293304, 0.02251889742910862, -0.012389992363750935, -0.014869646169245243, -0.004939723759889603, -0.049328166991472244, 0.04858872666954994, 0.034833502024412155, 0.025517374277114868, -0.014575554057955742, -0.017493491992354393, 0.08115442842245102, 0.027120918035507202, 0.05032927542924881, 0.02507568895816803, -0.037313755601644516, -0.05492451414465904, 0.016460513696074486, 0.027878237888216972, 0.011246489360928535, 0.013711998239159584, -0.003082460956647992, 0.11032824963331223, -0.05893594026565552, 0.06308192759752274, 0.07183311134576797, -0.011128542944788933, 0.04002918675541878, -0.04802154377102852, -0.00827194657176733, -0.04036792367696762, -0.035770855844020844, 0.05011511594057083, -0.013298486359417439, -0.044574420899152756, 0.011838864535093307, -0.002894731005653739, -0.08008749037981033, 0.03864732012152672, 0.051154691725969315, -0.061857521533966064, -0.017183657735586166, 0.07069447636604309, 0.010612710379064083, 0.0014670860255137086, -0.002946153748780489, 0.02350582554936409, 0.016878938302397728, 0.0632895678281784, -0.058033015578985214, 0.0034876116551458836, 0.016017170622944832, 0.071796715259552, -0.06535032391548157, 0.03986765816807747, -0.007038006093353033, 0.017479082569479942, 0.08130983263254166, 0.07145143300294876, -0.012097056955099106, 0.03068615309894085, -0.016431594267487526, 0.005457960534840822, 0.024317126721143723, -0.10093965381383896, -0.01196349784731865, 0.04783400893211365, -0.08667395263910294, -0.03092586249113083, -0.007282607723027468, 0.03844574838876724, -0.008504028432071209, 0.08764616400003433, 0.037653543055057526, 0.01522647961974144, 0.0409034788608551, -0.05847250670194626, 0.05021270364522934, 0.05126671865582466, -0.04422769322991371, -0.08685361593961716, 0.003227476729080081, 0.004578131716698408, 0.05973103642463684, 0.08467425405979156, -0.04853644594550133, -0.01048202347010374, -0.010526526719331741, 0.024614492431282997, -0.04642181843519211, -0.09703759849071503, -0.07001469284296036, 0.10616669058799744, 0.053978294134140015, -0.023879986256361008, -0.04874569922685623, 0.06601633131504059, -0.08058817684650421, -0.05896075442433357, -0.13508038222789764, -0.043088026344776154, 0.000995646696537733, 2.2714218767603145e-33, -0.020835980772972107, 0.019444383680820465, -0.005697805434465408, -0.09005845338106155, -0.001646201591938734, -0.046056147664785385, -0.0546686053276062, -0.12869136035442352, -0.06599701941013336, 0.024778585880994797, 0.0072272708639502525, -0.0940731093287468, 0.0002973833179567009, 0.04018126428127289, 0.14713451266288757, -0.0014650840312242508, -0.0826813355088234, -0.04341892525553703, 0.003841859521344304, -0.003418280743062496, -0.07854100316762924, 0.05515064299106598, 0.04782014340162277, -0.013135364279150963, -0.023230714723467827, -0.07441858947277069, 0.023318957537412643, -0.044987455010414124, -0.04983216151595116, 0.010528222657740116, 0.0838194340467453, 0.01037422101944685, 0.02928449958562851, -0.03653614968061447, -0.074612557888031, 0.020795149728655815, -0.0422525480389595, -0.0498194620013237, 0.057267580181360245, 0.015563633292913437, 0.06329477578401566, -0.03759701922535896, 0.09781251847743988, 0.025663431733846664, -0.05832948163151741, 0.06561121344566345, 0.061049677431583405, 0.054767780005931854, -0.0033835957292467356, 0.02143270894885063, 0.012685918249189854, 0.06992939114570618, -0.011592091992497444, -0.16527609527111053, -0.011534648947417736, 0.0042526088654994965, 0.052953045815229416, -0.055317044258117676, -0.01145183015614748, 0.05402963235974312, -0.006338823586702347, 0.05134459584951401, 0.04337993636727333, -0.05226071923971176, -0.026053668931126595, -0.03815265744924545, 0.0782470703125, -0.025127027183771133, 0.008668338879942894, 0.022089404985308647, -0.09048391878604889, 0.09108150005340576, 0.048597417771816254, 0.04186404123902321, 0.020110396668314934, -0.02498611807823181, 0.01974564418196678, 0.05133293941617012, 0.06044933199882507, -0.05958566442131996, -0.04212716966867447, -0.07524938136339188, -0.0054306527599692345, -0.032192882150411606, 0.039365340024232864, -0.02071319706737995, -0.02603195235133171, -0.014177943579852581, 0.008818913251161575, 0.029714321717619896, 0.047859568148851395, -0.05102498456835747, -0.08445559442043304, 0.0259105134755373, -0.0004852373094763607, -4.077412642784298e-33, 0.022540751844644547, 0.013003397732973099, 0.04559183493256569, 0.062101636081933975, -0.040584154427051544, 0.053073134273290634, -0.08117417246103287, 0.012202028185129166, 0.01164914295077324, 0.0940205305814743, 0.05236241966485977, 0.03606709465384483, 0.006249205209314823, 0.04096098989248276, 0.06960918009281158, 0.03048417530953884, 0.042175084352493286, 0.02744436077773571, -0.05423027649521828, -0.08815961331129074, 0.0595165379345417, -0.06520593166351318, 0.003464370034635067, -0.042547427117824554, -0.0780482292175293, -0.0036021023988723755, 0.027739044278860092, -0.020817967131733894, -0.0419309139251709, -0.0026255303528159857, 0.012655106373131275, -0.023431112989783287, -0.07530327141284943, -0.0517398975789547, -0.011056969873607159, -0.06054738536477089, -0.04607042297720909, 0.0597958117723465, 0.042488787323236465, -0.060952261090278625, 0.016426363959908485, -0.013031595386564732, 0.06506296992301941, 0.003462886204943061, -0.057668305933475494, -0.0703829750418663, -0.06961894780397415, 0.05947813764214516, -0.05941075459122658, -0.00340747507289052, -0.009183846414089203, 0.040401216596364975, 0.038409847766160965, -0.015584977343678474, 0.005268055014312267, 0.019547075033187866, -0.10211063176393509, -0.02292485535144806, -0.061357829719781876, -0.05041201785206795, -0.05535493418574333, 0.09845820814371109, -0.003922868520021439, 0.03788936883211136, 0.0520150400698185, 0.024573203176259995, -0.052109092473983765, -0.056078847497701645, -0.04373156279325485, 0.05828504636883736, 0.06998252868652344, 0.004192084539681673, -0.011104214936494827, -0.03741515055298805, -0.03904280811548233, -0.01949825882911682, 0.017010901123285294, 0.004395828116685152, -0.03187746927142143, 0.07295704632997513, 0.07698697596788406, 0.00701597984880209, 0.03406830132007599, -0.006441427860409021, 0.06518373638391495, 0.07902119308710098, -0.044539082795381546, 0.10940886288881302, -0.020032770931720734, 0.057561181485652924, 0.12484627962112427, 0.08077145367860794, -0.10618606954813004, 0.033728983253240585, -0.00510417902842164, -3.23462785445372e-08, -0.048488128930330276, -0.016018005087971687, -0.04109257459640503, -0.014666708186268806, -0.05356503278017044, 0.008911820128560066, 0.010779100470244884, 0.007690900005400181, 0.013321703299880028, -0.0009872508235275745, 0.018134726211428642, -0.037340905517339706, -0.04214620962738991, 0.08042184263467789, -0.027734100818634033, -0.06564615666866302, -0.045965902507305145, 0.08726167678833008, -0.06597186625003815, -0.013915765099227428, -0.03980376571416855, -0.005563430022448301, 0.07671931385993958, 0.05692272260785103, -0.05079563707113266, 0.0270135048776865, -0.008341223932802677, -0.03033352643251419, 0.010472777299582958, 0.06287212669849396, 0.0015228738775476813, 0.056547053158283234, -0.018671594560146332, -0.057460445910692215, -0.0747397243976593, -0.009441651403903961, 0.0017514049541205168, -0.09026125073432922, 0.04985814541578293, -0.008639723062515259, 0.007795941550284624, -0.06974046677350998, 0.07303695380687714, 0.039134345948696136, 0.06560133397579193, -0.13380663096904755, -0.010383693501353264, 0.0009092314867302775, -0.06193683668971062, 0.02789519727230072, -0.036339085549116135, -0.04760896787047386, 0.01480646152049303, 0.03341684862971306, -0.020672008395195007, -0.044537436217069626, -0.08806760609149933, -0.0018533698748797178, -0.0043679638765752316, 0.06391018629074097, -0.005339599214494228, -0.1570952832698822, 0.04734744504094124, 0.08656676858663559], "id": "9af4ac75-230b-5d51-8bbf-2ffb19aaa763"}
{"index": {"_id": "1b1d40cc-4eaa-54cf-8938-e59ecae5f19e"}}
{"actual_price": "1499", "average_rating": "3.8", "brand": "York", "category": "Clothing and Accessories", "crawled_at": "10-02-2021 20:11:54", "description": "Yorker trackpants made from 100% rich combed cotton giving it a rich look.Designed for Comfort,Skin friendly fabric,itch-free waistband & great for all year round use Proudly made in India", "discount": "68% off", "images": ["https://rukminim1.flixcart.com/image/128/128/jrjizrk0/track-pant/f/h/e/xl-1005navi-yorker-original-imafdb9hfsrefkyd.jpeg?q=70", "https://rukminim1.flixcart.com/image/128/128/jrjizrk0/track-pant/f/h/e/l-1005navi-yorker-original-imafczg3qwg7xhze.jpeg?q=70"], "out_of_stock": false, "pid": "TKPFDABN3GXYPFHE", "product_details": [{"Style Code": "1005NAVI"}, {"Closure": "Elastic"}, {"Pockets": "Side Pockets"}, {"Fabric": "Cotton Blend"}, {"Pattern": "Solid"}, {"Color": "Dark Blue"}], "seller": "Shyam Enterprises", "selling_price": "466", "sub_category": "Bottomwear", "title": "Solid Men Dark Blue Track Pants", "url": "https://www.flipkart.com/yorker-solid-men-dark-blue-track-pants/p/itm3379005c3af06?pid=TKPFDABN3GXYPFHE&lid=LSTTKPFDABN3GXYPFHEUSICVD&marketplace=FLIPKART&srno=b_1_7&otracker=browse&fm=organic&iid=177a46eb-d053-4732-b3de-fcad6ff59cbd.TKPFDABN3GXYPFHE.SEARCH&ssid=utkd4t3gb40000001612415717799", "title_vector": [-0.0691312924027443, -0.007342826575040817, 0.0007692774524912238, 0.07099977880716324, -0.018921544775366783, -0.002775595523416996, 0.07232267409563065, -0.01963730715215206, -0.0897107943892479, 0.0017827426781877875, -0.08199705928564072, 0.01801138184964657, -0.025420576333999634, -0.04128969833254814, -0.058025531470775604, -0.002036451129242778, 0.07537221908569336, -0.007281685713678598, -0.032713521271944046, 0.012872355990111828, 0.03671658784151077, -0.03338467702269554, -0.028325507417321205, 0.05867962911725044, -0.1264837384223938, 0.016565503552556038, 0.0205822940915823, 0.052021484822034836, -0.05837015062570572, -0.011069439351558685, -0.07350464165210724, 0.004449278116226196, 0.011817468330264091, -0.030072271823883057, 0.023867560550570488, -0.13088203966617584, 0.01910613290965557, -0.042459286749362946, -0.022860778495669365, -0.012702305801212788, -0.03245647996664047, -0.07345448434352875, 0.018920909613370895, 0.051050443202257156, 0.023913199082016945, 0.026739422231912613, 0.015855884179472923, 0.0018877923721447587, 0.03382841870188713, 0.03902763873338699, 0.06157369539141655, -0.036334265023469925, 0.07369210571050644, 0.055356066673994064, 0.023015476763248444, 0.03511744365096092, -0.03787655010819435, -0.012820865958929062, -0.0017256089486181736, -0.019149228930473328, 0.013702094554901123, 0.03348171338438988, -0.0314277783036232, -0.013460550457239151, 0.059643156826496124, 0.03970731422305107, -0.05493219569325447, 0.08141081780195236, -0.04391786456108093, 0.06830598413944244, 0.0793331190943718, 0.002765435026958585, -0.056204188615083694, 0.007269393187016249, 0.027169035747647285, 0.03511112928390503, -0.044627491384744644, -0.026494119316339493, -0.10789313167333603, -0.04549190774559975, -0.00789551716297865, -0.06767485290765762, 0.007292487658560276, 0.006317631341516972, 0.03618816286325455, 0.016063258051872253, 0.05722740292549133, 0.025943759828805923, -0.06467877328395844, 0.06535273045301437, -0.05645814538002014, 0.06798077374696732, -0.017105024307966232, -0.056205786764621735, -0.0017542368732392788, 0.02330620586872101, -0.012873278930783272, 0.03156137093901634, -0.015953080728650093, 0.05043283477425575, 0.02714257687330246, -0.04985368996858597, 0.09641295671463013, -0.008875343017280102, -0.018187062814831734, -0.013565786182880402, -0.02948969416320324, 0.06531575322151184, 0.1334180235862732, 0.05901187285780907, 0.0492916963994503, -0.03443208709359169, 0.024330588057637215, 0.005448892712593079, -0.03775101527571678, -0.05121100693941116, -0.12288425117731094, 0.10091851651668549, 0.015463908202946186, -0.02957685850560665, -0.02071472816169262, 0.022023320198059082, -0.029371701180934906, 0.01911494880914688, -0.061789147555828094, 0.036536168307065964, 0.0058419182896614075, -8.27945395170766e-34, 0.04407051205635071, 0.0006820206181146204, 0.0288042351603508, 0.02013971284031868, -0.03426452353596687, -0.028150344267487526, -0.034029413014650345, -0.09060088545084, -0.03210291266441345, 0.033978745341300964, 0.019723892211914062, 0.027428973466157913, 0.002290744101628661, -0.008681541308760643, 0.06076391786336899, -0.07833723723888397, -0.0017254529520869255, -0.04440693557262421, -0.07380825281143188, -0.00734493974596262, -0.0983000174164772, 0.060096874833106995, 0.0034867129288613796, -0.023326564580202103, 0.06004130840301514, -0.03161494806408882, -0.019296444952487946, 0.002068290952593088, 0.0035182517021894455, 0.02227742224931717, 0.01501216646283865, 0.04796148091554642, 0.04895463585853577, 0.046521738171577454, -0.06115260720252991, -0.039117805659770966, -0.023146988824009895, -0.0013844018103554845, 0.022642269730567932, -0.022368796169757843, 0.09753616899251938, 0.015871630981564522, -0.0013052528956905007, 0.01922406442463398, -0.006662802305072546, 0.03993987664580345, 0.09404024481773376, 0.06462370604276657, 0.0042982278391718864, 0.05003448948264122, -0.04692598804831505, 0.02874765172600746, 0.005649877246469259, -0.15180343389511108, 0.016823142766952515, -0.03638821095228195, 0.03331442549824715, 0.023024311289191246, -0.028128888458013535, 0.047741785645484924, 0.0977814719080925, 0.08528722077608109, -0.0021617922466248274, -0.05234360694885254, 0.015732228755950928, -0.02400204725563526, -0.0014682771870866418, -0.015469272620975971, 0.03236526995897293, -0.04178229719400406, -0.04435241222381592, -0.04460227116942406, 0.11129412055015564, 0.011893268674612045, 0.10341417789459229, -0.009510451927781105, -0.027719328179955482, -0.012558207847177982, -0.040315624326467514, -0.04426486790180206, 0.0012399067636579275, -0.01576407440006733, -0.019656673073768616, -0.030543189495801926, -0.03328104689717293, 0.04910256713628769, -0.024055182933807373, 0.0223004799336195, 0.02481481432914734, -0.03176194056868553, -0.047620099037885666, -0.07463431358337402, -0.05218653380870819, 0.08008400350809097, -0.05761852487921715, -6.390633812962907e-34, 0.031090736389160156, 0.10343584418296814, -0.0016978040803223848, 0.11897992342710495, 0.0771331712603569, 0.0006662816158495843, -0.006561347749084234, 0.014163381420075893, 0.07515247166156769, 0.09945197403430939, 0.16262121498584747, 0.043555423617362976, 0.011608505621552467, 0.02212429977953434, 0.10242708027362823, -0.038328684866428375, 0.03248336911201477, -0.007772989105433226, -0.031414952129125595, -0.001834461698308587, 0.09266473352909088, -0.07671283930540085, 0.03693971782922745, -0.03903936222195625, -0.02356479875743389, 0.032903991639614105, 0.05353715270757675, 0.003544224426150322, -0.0932253897190094, 0.09044463187456131, 0.001418633502908051, 0.06412991881370544, -0.05082300305366516, -0.005901941563934088, -0.02809469774365425, -0.05512768775224686, -0.008130610920488834, 0.1068132221698761, 0.002895582700148225, 0.010310485027730465, -0.024422889575362206, 0.00454808259382844, 0.06148301064968109, 0.04584671929478645, -0.06842929869890213, -0.09283239394426346, -0.040991250425577164, 0.01875782199203968, -0.09682611376047134, -0.010240907780826092, -0.05629584193229675, 0.034415170550346375, -0.00970697496086359, -0.034237295389175415, -0.00027088940260000527, -0.05598778277635574, -0.039940956979990005, 0.049081288278102875, -0.05032682046294212, 0.09645579755306244, -0.02320941351354122, 0.10947434604167938, 0.060516003519296646, -0.010895132087171078, 0.00253989826887846, 0.0658067837357521, -0.060823988169431686, -0.08326085656881332, -0.07328479737043381, 0.01165678072720766, 0.005914673209190369, -0.1256621927022934, 0.06262393295764923, -0.014414993114769459, -0.010925241746008396, -0.0991196408867836, -0.012488201260566711, 0.039840590208768845, -0.02142174355685711, -0.011269355192780495, 0.039439961314201355, -0.03422520309686661, 0.07658020406961441, 0.033909525722265244, -0.016902511939406395, 0.1173945963382721, -0.07013221830129623, 0.069186732172966, 0.023728223517537117, 0.03487418219447136, 0.023531703278422356, 0.019640324637293816, 0.05938851833343506, 0.02323957160115242, -0.11046979576349258, -1.4821466720604803e-08, -0.033181335777044296, -0.020706364884972572, -0.003150660777464509, -0.004791557788848877, -0.0076208836399018764, -0.016503194347023964, -0.006825975142419338, -0.005812515038996935, 0.07015204429626465, 0.046180255711078644, -0.014370503835380077, -0.03775521740317345, -0.013161102309823036, 0.016326256096363068, -0.028321251273155212, -0.010303180664777756, -0.09232593327760696, 0.014224101789295673, -0.04991545155644417, -0.06391869485378265, 0.010297560133039951, -0.05619543418288231, 0.04893513396382332, 0.0895407423377037, 0.04175510257482529, -0.012080357410013676, -0.011081084609031677, -0.06504430621862411, 0.03410610556602478, 0.09993346035480499, 0.01960885152220726, 0.061984699219465256, 0.014606009237468243, -0.08512762188911438, 0.04572569206357002, -0.03546621650457382, -0.05186373367905617, 0.04939091578125954, 0.03799225389957428, -0.034928370267152786, -0.04141274094581604, -0.0897742509841919, 0.011626139283180237, -0.01028603408485651, 0.06294959038496017, -0.1529836505651474, 0.01003330945968628, 0.09009509533643723, -0.07012533396482468, -0.008941723965108395, -0.0006893737008795142, -0.025636248290538788, 9.945969941327348e-05, 0.02822062186896801, 0.029586251825094223, -0.0948726162314415, -0.021037470549345016, 0.08565594255924225, 0.010016241110861301, 0.004982372745871544, -0.02365456148982048, -0.09002717584371567, -0.025833798572421074, 0.01437431387603283], "description_vector": [0.010161378420889378, 0.03702054172754288, 0.015739209949970245, 0.0011658361181616783, 0.07188732922077179, -0.03905102238059044, 0.08338362723588943, 0.0315282866358757, -0.03263932093977928, 0.042967427521944046, -0.025904344394803047, 0.017779702320694923, -0.0933217778801918, 0.0326097309589386, -0.04391865059733391, 0.01360283326357603, 0.047254595905542374, -0.00011384738172637299, -0.0005159328575246036, -0.044058315455913544, 0.016640568152070045, -0.07310980558395386, 0.10624560713768005, 0.06056896969676018, -0.0021399068646132946, -0.032774172723293304, 0.02251889742910862, -0.012389992363750935, -0.014869646169245243, -0.004939723759889603, -0.049328166991472244, 0.04858872666954994, 0.034833502024412155, 0.025517374277114868, -0.014575554057955742, -0.017493491992354393, 0.08115442842245102, 0.027120918035507202, 0.05032927542924881, 0.02507568895816803, -0.037313755601644516, -0.05492451414465904, 0.016460513696074486, 0.027878237888216972, 0.011246489360928535, 0.013711998239159584, -0.003082460956647992, 0.11032824963331223, -0.05893594026565552, 0.06308192759752274, 0.07183311134576797, -0.011128542944788933, 0.04002918675541878, -0.04802154377102852, -0.00827194657176733, -0.04036792367696762, -0.035770855844020844, 0.05011511594057083, -0.013298486359417439, -0.044574420899152756, 0.011838864535093307, -0.002894731005653739, -0.08008749037981033, 0.03864732012152672, 0.051154691725969315, -0.061857521533966064, -0.017183657735586166, 0.07069447636604309, 0.010612710379064083, 0.0014670860255137086, -0.002946153748780489, 0.02350582554936409, 0.016878938302397728, 0.0632895678281784, -0.058033015578985214, 0.0034876116551458836, 0.016017170622944832, 0.071796715259552, -0.06535032391548157, 0.03986765816807747, -0.007038006093353033, 0.017479082569479942, 0.08130983263254166, 0.07145143300294876, -0.012097056955099106, 0.03068615309894085, -0.016431594267487526, 0.005457960534840822, 0.024317126721143723, -0.10093965381383896, -0.01196349784731865, 0.04783400893211365, -0.08667395263910294, -0.03092586249113083, -0.007282607723027468, 0.03844574838876724, -0.008504028432071209, 0.08764616400003433, 0.037653543055057526, 0.01522647961974144, 0.0409034788608551, -0.05847250670194626, 0.05021270364522934, 0.05126671865582466, -0.04422769322991371, -0.08685361593961716, 0.003227476729080081, 0.004578131716698408, 0.05973103642463684, 0.08467425405979156, -0.04853644594550133, -0.01048202347010374, -0.010526526719331741, 0.024614492431282997, -0.04642181843519211, -0.09703759849071503, -0.07001469284296036, 0.10616669058799744, 0.053978294134140015, -0.023879986256361008, -0.04874569922685623, 0.06601633131504059, -0.08058817684650421, -0.05896075442433357, -0.13508038222789764, -0.043088026344776154, 0.000995646696537733, 2.2714218767603145e-33, -0.020835980772972107, 0.019444383680820465, -0.005697805434465408, -0.09005845338106155, -0.001646201591938734, -0.046056147664785385, -0.0546686053276062, -0.12869136035442352, -0.06599701941013336, 0.024778585880994797, 0.0072272708639502525, -0.0940731093287468, 0.0002973833179567009, 0.04018126428127289, 0.14713451266288757, -0.0014650840312242508, -0.0826813355088234, -0.04341892525553703, 0.003841859521344304, -0.003418280743062496, -0.07854100316762924, 0.05515064299106598, 0.04782014340162277, -0.013135364279150963, -0.023230714723467827, -0.07441858947277069, 0.023318957537412643, -0.044987455010414124, -0.04983216151595116, 0.010528222657740116, 0.0838194340467453, 0.01037422101944685, 0.02928449958562851, -0.03653614968061447, -0.074612557888031, 0.020795149728655815, -0.0422525480389595, -0.0498194620013237, 0.057267580181360245, 0.015563633292913437, 0.06329477578401566, -0.03759701922535896, 0.09781251847743988, 0.025663431733846664, -0.05832948163151741, 0.06561121344566345, 0.061049677431583405, 0.054767780005931854, -0.0033835957292467356, 0.02143270894885063, 0.012685918249189854, 0.06992939114570618, -0.011592091992497444, -0.16527609527111053, -0.011534648947417736, 0.0042526088654994965, 0.052953045815229416, -0.055317044258117676, -0.01145183015614748, 0.05402963235974312, -0.006338823586702347, 0.05134459584951401, 0.04337993636727333, -0.05226071923971176, -0.026053668931126595, -0.03815265744924545, 0.0782470703125, -0.025127027183771133, 0.008668338879942894, 0.022089404985308647, -0.09048391878604889, 0.09108150005340576, 0.048597417771816254, 0.04186404123902321, 0.020110396668314934, -0.02498611807823181, 0.01974564418196678, 0.05133293941617012, 0.06044933199882507, -0.05958566442131996, -0.04212716966867447, -0.07524938136339188, -0.0054306527599692345, -0.032192882150411606, 0.039365340024232864, -0.02071319706737995, -0.02603195235133171, -0.014177943579852581, 0.008818913251161575, 0.029714321717619896, 0.047859568148851395, -0.05102498456835747, -0.08445559442043304, 0.0259105134755373, -0.0004852373094763607, -4.077412642784298e-33, 0.022540751844644547, 0.013003397732973099, 0.04559183493256569, 0.062101636081933975, -0.040584154427051544, 0.053073134273290634, -0.08117417246103287, 0.012202028185129166, 0.01164914295077324, 0.0940205305814743, 0.05236241966485977, 0.03606709465384483, 0.006249205209314823, 0.04096098989248276, 0.06960918009281158, 0.03048417530953884, 0.042175084352493286, 0.02744436077773571, -0.05423027649521828, -0.08815961331129074, 0.0595165379345417, -0.06520593166351318, 0.003464370034635067, -0.042547427117824554, -0.0780482292175293, -0.0036021023988723755, 0.027739044278860092, -0.020817967131733894, -0.0419309139251709, -0.0026255303528159857, 0.012655106373131275, -0.023431112989783287, -0.07530327141284943, -0.0517398975789547, -0.011056969873607159, -0.06054738536477089, -0.04607042297720909, 0.0597958117723465, 0.042488787323236465, -0.060952261090278625, 0.016426363959908485, -0.013031595386564732, 0.06506296992301941, 0.003462886204943061, -0.057668305933475494, -0.0703829750418663, -0.06961894780397415, 0.05947813764214516, -0.05941075459122658, -0.00340747507289052, -0.009183846414089203, 0.040401216596364975, 0.038409847766160965, -0.015584977343678474, 0.005268055014312267, 0.019547075033187866, -0.10211063176393509, -0.02292485535144806, -0.061357829719781876, -0.05041201785206795, -0.05535493418574333, 0.09845820814371109, -0.003922868520021439, 0.03788936883211136, 0.0520150400698185, 0.024573203176259995, -0.052109092473983765, -0.056078847497701645, -0.04373156279325485, 0.05828504636883736, 0.06998252868652344, 0.004192084539681673, -0.011104214936494827, -0.03741515055298805, -0.03904280811548233, -0.01949825882911682, 0.017010901123285294, 0.004395828116685152, -0.03187746927142143, 0.07295704632997513, 0.07698697596788406, 0.00701597984880209, 0.03406830132007599, -0.006441427860409021, 0.06518373638391495, 0.07902119308710098, -0.044539082795381546, 0.10940886288881302, -0.020032770931720734, 0.057561181485652924, 0.12484627962112427, 0.08077145367860794, -0.10618606954813004, 0.033728983253240585, -0.00510417902842164, -3.23462785445372e-08, -0.048488128930330276, -0.016018005087971687, -0.04109257459640503, -0.014666708186268806, -0.05356503278017044, 0.008911820128560066, 0.010779100470244884, 0.007690900005400181, 0.013321703299880028, -0.0009872508235275745, 0.018134726211428642, -0.037340905517339706, -0.04214620962738991, 0.08042184263467789, -0.027734100818634033, -0.06564615666866302, -0.045965902507305145, 0.08726167678833008, -0.06597186625003815, -0.013915765099227428, -0.03980376571416855, -0.005563430022448301, 0.07671931385993958, 0.05692272260785103, -0.05079563707113266, 0.0270135048776865, -0.008341223932802677, -0.03033352643251419, 0.010472777299582958, 0.06287212669849396, 0.0015228738775476813, 0.056547053158283234, -0.018671594560146332, -0.057460445910692215, -0.0747397243976593, -0.009441651403903961, 0.0017514049541205168, -0.09026125073432922, 0.04985814541578293, -0.008639723062515259, 0.007795941550284624, -0.06974046677350998, 0.07303695380687714, 0.039134345948696136, 0.06560133397579193, -0.13380663096904755, -0.010383693501353264, 0.0009092314867302775, -0.06193683668971062, 0.02789519727230072, -0.036339085549116135, -0.04760896787047386, 0.01480646152049303, 0.03341684862971306, -0.020672008395195007, -0.044537436217069626, -0.08806760609149933, -0.0018533698748797178, -0.0043679638765752316, 0.06391018629074097, -0.005339599214494228, -0.1570952832698822, 0.04734744504094124, 0.08656676858663559], "id": "1b1d40cc-4eaa-54cf-8938-e59ecae5f19e"}
{"index": {"_id": "a33cf2e2-c5e4-5f06-b3aa-8f46a6fd1aef"}}
{"actual_price": "1499", "average_rating": "3.8", "brand": "York", "category": "Clothing and Accessories", "crawled_at": "10-02-2021 20:11:55", "description": "Yorker trackpants made from 100% rich combed cotton giving it a rich look.Designed for Comfort,Skin friendly fabric,itch-free waistband & great for all year round use Proudly made in India", "discount": "63% off", "images": ["https://rukminim1.flixcart.com/image/128/128/jr3t5e80/track-pant/8/n/h/xxl-1005dskin-yorker-original-imafczgcbc84trwn.jpeg?q=70", "https://rukminim1.flixcart.com/image/128/128/jr3t5e80/track-pant/8/n/h/xxl-1005dskin-yorker-original-imafczezeauspu2a.jpeg?q=70"], "out_of_stock": false, "pid": "TKPFCZ9ESGZYT8NH", "product_details": [{"Style Code": "1005DSKIN"}, {"Closure": "Elastic"}, {"Pockets": "Side Pockets"}, {"Fabric": "Cotton Blend"}, {"Pattern": "Solid"}, {"Color": "Beige"}], "seller": "Shyam Enterprises", "selling_price": "545", "sub_category": "Bottomwear", "title": "Solid Men Beige Track Pants", "url": "https://www.flipkart.com/yorker-solid-men-beige-track-pants/p/itm6fff81aa14a9a?pid=TKPFCZ9ESGZYT8NH&lid=LSTTKPFCZ9ESGZYT8NHBL36LH&marketplace=FLIPKART&srno=b_1_8&otracker=browse&fm=organic&iid=177a46eb-d053-4732-b3de-fcad6ff59cbd.TKPFCZ9ESGZYT8NH.SEARCH&ssid=utkd4t3gb40000001612415717799", "title_vector": [-0.02151433564722538, 0.019202060997486115, 0.010527500882744789, 0.06520728766918182, 0.02325430139899254, 0.01838139444589615, 0.08549240976572037, -0.047873400151729584, -0.0759119763970375, 0.003252369351685047, -0.07301705330610275, 0.026492059230804443, -0.04118062183260918, -0.008239495567977428, -0.0464027114212513, -0.04885405674576759, 0.01285005733370781, -0.017107665538787842, -0.03805578500032425, 0.014315771870315075, -0.011659830808639526, -0.04961298406124115, -0.012678315863013268, 0.03513671085238457, -0.12994815409183502, -0.01983056589961052, 0.01264031883329153, 0.023142924532294273, -0.05883682891726494, -0.04188580811023712, -0.08910834044218063, -0.02944464609026909, -0.0021503774914890528, -0.009984430857002735, 0.011182061396539211, -0.1065773069858551, 0.02355733886361122, -0.04426388815045357, -0.03280732408165932, -0.022937223315238953, -0.015763049945235252, -0.09947167336940765, 0.030848687514662743, 0.05891212448477745, 0.06134962663054466, 0.04884349927306175, 0.054160743951797485, -0.01677432470023632, 0.02275185100734234, 0.03519913926720619, 0.03571169450879097, -0.040232714265584946, 0.06166062131524086, 0.046314507722854614, -0.031765248626470566, 0.039094723761081696, -0.011282875202596188, 0.01664668694138527, -0.021233022212982178, -0.06170249730348587, 0.011115996167063713, 0.016929907724261284, -0.028537888079881668, -0.019549483433365822, 0.04769295081496239, 0.030640859156847, -0.025754353031516075, 0.07094305008649826, 0.026238324120640755, 0.05239060893654823, 0.04762067645788193, 0.06123695522546768, -0.09112222492694855, 0.0021114095579832792, -0.0037286141887307167, 0.05888967216014862, -0.047759801149368286, 0.0002849625889211893, -0.06259335577487946, -0.01958656869828701, -0.026144832372665405, -0.011485961265861988, 0.05520012974739075, 0.00367407756857574, 0.031426187604665756, 0.017149319872260094, 0.05105956643819809, -0.01594015397131443, -0.060737304389476776, 0.049466572701931, -0.054280735552310944, 0.07742665708065033, 0.0018576325383037329, -0.01117271464318037, -0.02200585976243019, 0.04096672683954239, -0.02088991180062294, 0.028633955866098404, -0.0004075238248333335, 0.037208445370197296, 0.049381788820028305, -0.04519587382674217, 0.11330858618021011, 0.012890206649899483, -0.015853317454457283, -0.02628316357731819, -0.05317464843392372, 0.03560236468911171, 0.08173004537820816, 0.05269608646631241, 0.014111334457993507, 0.005458483938127756, 0.021537858992815018, 0.027443818747997284, -0.014988290145993233, -0.07037415355443954, -0.07809696346521378, 0.07079105079174042, 0.040094923228025436, -0.004431187175214291, -0.03134304657578468, 0.025113927200436592, -0.028217868879437447, 0.051056474447250366, -0.0875057801604271, 0.011524536646902561, 0.056390270590782166, -1.1878545820856877e-33, 0.010115883313119411, 0.021810436621308327, 0.02624855935573578, -0.013039225712418556, 0.03633696585893631, -0.01758362539112568, -0.03148754686117172, -0.1329706758260727, -0.013830996118485928, 0.031007584184408188, -0.015710381790995598, 0.027504295110702515, -0.009161999449133873, -0.0024927989579737186, 0.054497722536325455, -0.062245409935712814, -0.003142773639410734, 0.013338657096028328, -0.06874503195285797, 0.0006631666328758001, -0.09533648192882538, 0.1033863052725792, 0.012804394587874413, -0.011076739989221096, 0.06892815232276917, -0.011015013791620731, -0.03675403445959091, 0.021532699465751648, -0.04819521680474281, 0.011193698272109032, 0.02936701476573944, 0.03293626010417938, 0.050060346722602844, 0.05613270401954651, -0.07909128069877625, -0.06009818613529205, -0.08189081400632858, 0.0006942389882169664, 0.10585469007492065, 0.0258531104773283, 0.08373851329088211, -0.0056153517216444016, 0.05009062960743904, 0.06828437000513077, -0.034496650099754333, 0.015385051257908344, 0.07456132769584656, 0.10386969894170761, -0.00826030969619751, 0.025343719869852066, -0.06279958784580231, 0.0652410015463829, -0.035425733774900436, -0.12859465181827545, -0.020287059247493744, -0.07974966615438461, 0.06985090672969818, 0.0003792021016124636, -0.02916296198964119, 0.02238435111939907, 0.10156264901161194, 0.08771702647209167, -0.011683659628033638, -0.0603649728000164, -0.028157882392406464, -0.05732192471623421, -0.04278036952018738, 0.03028261847794056, 0.04612760245800018, 0.033417709171772, -0.03747637942433357, -0.031184203922748566, 0.11144010722637177, 0.01763629913330078, 0.10947542637586594, -0.02084432728588581, -0.0502941757440567, 0.015331482514739037, -0.04786424711346626, -0.044095639139413834, -0.03538604453206062, -0.007500463165342808, -0.054208144545555115, -0.030672239139676094, -0.046638280153274536, 0.05631740763783455, -0.025352980941534042, 0.035644274204969406, 0.014766164124011993, -0.04411226511001587, -0.051852740347385406, -0.03778420761227608, -0.060207970440387726, 0.05922148376703262, -0.06067752465605736, 1.236429727999259e-34, 0.053412847220897675, 0.11045458167791367, 0.012876228429377079, 0.1284593641757965, 0.08475241810083389, -0.01307210698723793, -0.012516903690993786, 0.017015373334288597, 0.07744071632623672, 0.09521346539258957, 0.15269948542118073, 0.00906948558986187, -0.007741408422589302, 0.05584413930773735, 0.07458274066448212, -0.0337178036570549, 0.050996024161577225, 0.00213175592944026, -0.049249473959207535, -0.014224979095160961, 0.03683525323867798, -0.1163739562034607, -0.0110679492354393, -0.013335797935724258, -0.028148069977760315, 0.014706218615174294, 0.044390030205249786, -0.041067369282245636, -0.08844073116779327, 0.07910990715026855, -0.018986212089657784, 0.017613723874092102, -0.06383714079856873, 0.012280473485589027, 0.01284805592149496, -0.11071997880935669, 0.03006657399237156, 0.12933839857578278, 0.015206010080873966, 0.0019010236719623208, 0.009695440530776978, -0.016797475516796112, 0.051604460924863815, 0.0714084729552269, -0.051321323961019516, -0.06225945055484772, -0.038350846618413925, 0.0025025384966284037, -0.13276585936546326, 0.0066255247220396996, -0.027828466147184372, 0.048463109880685806, 0.03421829268336296, -0.014058703556656837, 0.014484841376543045, -0.013641384430229664, -0.05123220011591911, 0.028577696532011032, -0.0656498447060585, 0.09899106621742249, -0.031239807605743408, 0.0800725594162941, 0.03223433718085289, -0.024601025506854057, -0.0058530825190246105, 0.01793612912297249, -0.0800415575504303, -0.044278182089328766, -0.06640719622373581, 0.033944036811590195, 0.009843711741268635, -0.07662659883499146, 0.09155922383069992, -0.03333500027656555, -0.02617964707314968, -0.057030122727155685, 0.015911970287561417, 0.04893353581428528, 0.022606942802667618, 0.006063894368708134, 0.0607934333384037, -0.044377245008945465, 0.10037470608949661, 0.008102606050670147, -0.005280977115035057, 0.1252683699131012, -0.06256351619958878, 0.09352032095193863, 0.039001889526844025, 0.07663489878177643, 0.013378072530031204, 0.02834226004779339, 0.030298233032226562, 0.043475933372974396, -0.07321545481681824, -1.3202828164082803e-08, -0.03316393122076988, -0.016632191836833954, -0.022392068058252335, 0.010597668588161469, -0.03000984713435173, 0.015312206000089645, -0.006473665125668049, -0.02102070488035679, 0.021165406331419945, 0.04153858870267868, -0.021717209368944168, -0.060309361666440964, -0.030867086723446846, 0.014130393974483013, -0.019793909043073654, 0.0012539307354018092, -0.0832124799489975, 0.07081633061170578, -0.036470308899879456, -0.030919918790459633, -0.0019135854672640562, -0.03597158193588257, 0.04948854446411133, 0.12743473052978516, 0.03227199614048004, 0.00031881421455182135, -0.017906805500388145, -0.05243414267897606, -0.016776198521256447, 0.09384911507368088, 0.006276261992752552, 0.025307949632406235, -0.0050824484787881374, -0.051673419773578644, 0.0490201897919178, -0.020609097555279732, -0.012594408355653286, 0.011694593355059624, 0.017481792718172073, -0.06777522712945938, -0.026245154440402985, -0.0634831115603447, 0.0447223074734211, -0.006181944627314806, 0.1032281145453453, -0.14006415009498596, 1.877245813375339e-05, 0.040095940232276917, -0.07506006211042404, 0.004675898235291243, -0.0029423004016280174, 0.005555522162467241, -0.003999617882072926, 0.06078292801976204, 0.0013826783979311585, -0.09186428785324097, -0.053494058549404144, 0.049110934138298035, -0.04107651486992836, 0.003068245481699705, -0.034579724073410034, -0.08955905586481094, -0.006250934675335884, -0.017407294362783432], "description_vector": [0.010161378420889378, 0.03702054172754288, 0.015739209949970245, 0.0011658361181616783, 0.07188732922077179, -0.03905102238059044, 0.08338362723588943, 0.0315282866358757, -0.03263932093977928, 0.042967427521944046, -0.025904344394803047, 0.017779702320694923, -0.0933217778801918, 0.0326097309589386, -0.04391865059733391, 0.01360283326357603, 0.047254595905542374, -0.00011384738172637299, -0.0005159328575246036, -0.044058315455913544, 0.016640568152070045, -0.07310980558395386, 0.10624560713768005, 0.06056896969676018, -0.0021399068646132946, -0.032774172723293304, 0.02251889742910862, -0.012389992363750935, -0.014869646169245243, -0.004939723759889603, -0.049328166991472244, 0.04858872666954994, 0.034833502024412155, 0.025517374277114868, -0.014575554057955742, -0.017493491992354393, 0.08115442842245102, 0.027120918035507202, 0.05032927542924881, 0.02507568895816803, -0.037313755601644516, -0.05492451414465904, 0.016460513696074486, 0.027878237888216972, 0.011246489360928535, 0.013711998239159584, -0.003082460956647992, 0.11032824963331223, -0.05893594026565552, 0.06308192759752274, 0.07183311134576797, -0.011128542944788933, 0.04002918675541878, -0.04802154377102852, -0.00827194657176733, -0.04036792367696762, -0.035770855844020844, 0.05011511594057083, -0.013298486359417439, -0.044574420899152756, 0.011838864535093307, -0.002894731005653739, -0.08008749037981033, 0.03864732012152672, 0.051154691725969315, -0.061857521533966064, -0.017183657735586166, 0.07069447636604309, 0.010612710379064083, 0.0014670860255137086, -0.002946153748780489, 0.02350582554936409, 0.016878938302397728, 0.0632895678281784, -0.058033015578985214, 0.0034876116551458836, 0.016017170622944832, 0.071796715259552, -0.06535032391548157, 0.03986765816807747, -0.007038006093353033, 0.017479082569479942, 0.08130983263254166, 0.07145143300294876, -0.012097056955099106, 0.03068615309894085, -0.016431594267487526, 0.005457960534840822, 0.024317126721143723, -0.10093965381383896, -0.01196349784731865, 0.04783400893211365, -0.08667395263910294, -0.03092586249113083, -0.007282607723027468, 0.03844574838876724, -0.008504028432071209, 0.08764616400003433, 0.037653543055057526, 0.01522647961974144, 0.0409034788608551, -0.05847250670194626, 0.05021270364522934, 0.05126671865582466, -0.04422769322991371, -0.08685361593961716, 0.003227476729080081, 0.004578131716698408, 0.05973103642463684, 0.08467425405979156, -0.04853644594550133, -0.01048202347010374, -0.010526526719331741, 0.024614492431282997, -0.04642181843519211, -0.09703759849071503, -0.07001469284296036, 0.10616669058799744, 0.053978294134140015, -0.023879986256361008, -0.04874569922685623, 0.06601633131504059, -0.08058817684650421, -0.05896075442433357, -0.13508038222789764, -0.043088026344776154, 0.000995646696537733, 2.2714218767603145e-33, -0.020835980772972107, 0.019444383680820465, -0.005697805434465408, -0.09005845338106155, -0.001646201591938734, -0.046056147664785385, -0.0546686053276062, -0.12869136035442352, -0.06599701941013336, 0.024778585880994797, 0.0072272708639502525, -0.0940731093287468, 0.0002973833179567009, 0.04018126428127289, 0.14713451266288757, -0.0014650840312242508, -0.0826813355088234, -0.04341892525553703, 0.003841859521344304, -0.003418280743062496, -0.07854100316762924, 0.05515064299106598, 0.04782014340162277, -0.013135364279150963, -0.023230714723467827, -0.07441858947277069, 0.023318957537412643, -0.044987455010414124, -0.04983216151595116, 0.010528222657740116, 0.0838194340467453, 0.01037422101944685, 0.02928449958562851, -0.03653614968061447, -0.074612557888031, 0.020795149728655815, -0.0422525480389595, -0.0498194620013237, 0.057267580181360245, 0.015563633292913437, 0.06329477578401566, -0.03759701922535896, 0.09781251847743988, 0.025663431733846664, -0.05832948163151741, 0.06561121344566345, 0.061049677431583405, 0.054767780005931854, -0.0033835957292467356, 0.02143270894885063, 0.012685918249189854, 0.06992939114570618, -0.011592091992497444, -0.16527609527111053, -0.011534648947417736, 0.0042526088654994965, 0.052953045815229416, -0.055317044258117676, -0.01145183015614748, 0.05402963235974312, -0.006338823586702347, 0.05134459584951401, 0.04337993636727333, -0.05226071923971176, -0.026053668931126595, -0.03815265744924545, 0.0782470703125, -0.025127027183771133, 0.008668338879942894, 0.022089404985308647, -0.09048391878604889, 0.09108150005340576, 0.048597417771816254, 0.04186404123902321, 0.020110396668314934, -0.02498611807823181, 0.01974564418196678, 0.05133293941617012, 0.06044933199882507, -0.05958566442131996, -0.04212716966867447, -0.07524938136339188, -0.0054306527599692345, -0.032192882150411606, 0.039365340024232864, -0.02071319706737995, -0.02603195235133171, -0.014177943579852581, 0.008818913251161575, 0.029714321717619896, 0.047859568148851395, -0.05102498456835747, -0.08445559442043304, 0.0259105134755373, -0.0004852373094763607, -4.077412642784298e-33, 0.022540751844644547, 0.013003397732973099, 0.04559183493256569, 0.062101636081933975, -0.040584154427051544, 0.053073134273290634, -0.08117417246103287, 0.012202028185129166, 0.01164914295077324, 0.0940205305814743, 0.05236241966485977, 0.03606709465384483, 0.006249205209314823, 0.04096098989248276, 0.06960918009281158, 0.03048417530953884, 0.042175084352493286, 0.02744436077773571, -0.05423027649521828, -0.08815961331129074, 0.0595165379345417, -0.06520593166351318, 0.003464370034635067, -0.042547427117824554, -0.0780482292175293, -0.0036021023988723755, 0.027739044278860092, -0.020817967131733894, -0.0419309139251709, -0.0026255303528159857, 0.012655106373131275, -0.023431112989783287, -0.07530327141284943, -0.0517398975789547, -0.011056969873607159, -0.06054738536477089, -0.04607042297720909, 0.0597958117723465, 0.042488787323236465, -0.060952261090278625, 0.016426363959908485, -0.013031595386564732, 0.06506296992301941, 0.003462886204943061, -0.057668305933475494, -0.0703829750418663, -0.06961894780397415, 0.05947813764214516, -0.05941075459122658, -0.00340747507289052, -0.009183846414089203, 0.040401216596364975, 0.038409847766160965, -0.015584977343678474, 0.005268055014312267, 0.019547075033187866, -0.10211063176393509, -0.02292485535144806, -0.061357829719781876, -0.05041201785206795, -0.05535493418574333, 0.09845820814371109, -0.003922868520021439, 0.03788936883211136, 0.0520150400698185, 0.024573203176259995, -0.052109092473983765, -0.056078847497701645, -0.04373156279325485, 0.05828504636883736, 0.06998252868652344, 0.004192084539681673, -0.011104214936494827, -0.03741515055298805, -0.03904280811548233, -0.01949825882911682, 0.017010901123285294, 0.004395828116685152, -0.03187746927142143, 0.07295704632997513, 0.07698697596788406, 0.00701597984880209, 0.03406830132007599, -0.006441427860409021, 0.06518373638391495, 0.07902119308710098, -0.044539082795381546, 0.10940886288881302, -0.020032770931720734, 0.057561181485652924, 0.12484627962112427, 0.08077145367860794, -0.10618606954813004, 0.033728983253240585, -0.00510417902842164, -3.23462785445372e-08, -0.048488128930330276, -0.016018005087971687, -0.04109257459640503, -0.014666708186268806, -0.05356503278017044, 0.008911820128560066, 0.010779100470244884, 0.007690900005400181, 0.013321703299880028, -0.0009872508235275745, 0.018134726211428642, -0.037340905517339706, -0.04214620962738991, 0.08042184263467789, -0.027734100818634033, -0.06564615666866302, -0.045965902507305145, 0.08726167678833008, -0.06597186625003815, -0.013915765099227428, -0.03980376571416855, -0.005563430022448301, 0.07671931385993958, 0.05692272260785103, -0.05079563707113266, 0.0270135048776865, -0.008341223932802677, -0.03033352643251419, 0.010472777299582958, 0.06287212669849396, 0.0015228738775476813, 0.056547053158283234, -0.018671594560146332, -0.057460445910692215, -0.0747397243976593, -0.009441651403903961, 0.0017514049541205168, -0.09026125073432922, 0.04985814541578293, -0.008639723062515259, 0.007795941550284624, -0.06974046677350998, 0.07303695380687714, 0.039134345948696136, 0.06560133397579193, -0.13380663096904755, -0.010383693501353264, 0.0009092314867302775, -0.06193683668971062, 0.02789519727230072, -0.036339085549116135, -0.04760896787047386, 0.01480646152049303, 0.03341684862971306, -0.020672008395195007, -0.044537436217069626, -0.08806760609149933, -0.0018533698748797178, -0.0043679638765752316, 0.06391018629074097, -0.005339599214494228, -0.1570952832698822, 0.04734744504094124, 0.08656676858663559], "id": "a33cf2e2-c5e4-5f06-b3aa-8f46a6fd1aef"}
{"index": {"_id": "ab4f0cca-6a84-51e1-b7e8-523724db8728"}}
{"actual_price": "1499", "average_rating": "3.8", "brand": "York", "category": "Clothing and Accessories", "crawled_at": "10-02-2021 20:11:55", "description": "Yorker trackpants made from 100% rich combed cotton giving it a rich look.Designed for Comfort,Skin friendly fabric,itch-free waistband & great for all year round use Proudly made in India", "discount": "67% off", "images": ["https://rukminim1.flixcart.com/image/128/128/jr58l8w0/track-pant/f/x/s/m-1005black-yorker-original-imafczg3jzvrxje2.jpeg?q=70", "https://rukminim1.flixcart.com/image/128/128/jr3t5e80/track-pant/f/x/s/s-1005black-yorker-original-imafczg3fgz3xhct.jpeg?q=70"], "out_of_stock": false, "pid": "TKPFCZ9DYU33FFXS", "product_details": [{"Style Code": "1005BLACK"}, {"Closure": "Drawstring, Elastic"}, {"Pockets": "Side Pockets"}, {"Fabric": "Cotton Blend"}, {"Pattern": "Solid"}, {"Color": "Black"}], "seller": "Shyam Enterprises", "selling_price": "489", "sub_category": "Bottomwear", "title": "Solid Men Black Track Pants", "url": "https://www.flipkart.com/yorker-solid-men-black-track-pants/p/itmfczg3ybt2wz5v?pid=TKPFCZ9DYU33FFXS&lid=LSTTKPFCZ9DYU33FFXSOVF3IQ&marketplace=FLIPKART&srno=b_1_9&otracker=browse&fm=organic&iid=177a46eb-d053-4732-b3de-fcad6ff59cbd.TKPFCZ9DYU33FFXS.SEARCH&ssid=utkd4t3gb40000001612415717799", "title_vector": [-0.06297885626554489, 0.009969460777938366, -0.04460199922323227, 0.08738775551319122, -0.023566722869873047, 0.00887156743556261, 0.049627117812633514, -0.022532526403665543, -0.07679765671491623, -0.040286190807819366, -0.06982836872339249, 0.008997808210551739, -0.029235471040010452, -0.05998842790722847, -0.08612979203462601, -0.04670445993542671, 0.04710778594017029, -0.006798353046178818, -0.03807761147618294, 0.01720391772687435, 0.028589380905032158, -0.03767615556716919, 0.000573469907976687, 0.031874705106019974, -0.12308771908283234, 0.02403017319738865, 0.009455622173845768, 0.054254863411188126, -0.06100362911820412, -0.06001448258757591, -0.058318208903074265, -0.015771858394145966, -0.021538853645324707, -0.013488915748894215, 0.04406367242336273, -0.08929605036973953, 0.02069053426384926, -0.0398714542388916, -0.03334810584783554, -0.03579425811767578, -0.058865584433078766, -0.08817288279533386, 0.0104234479367733, 0.07204252481460571, 0.044541604816913605, 0.040575526654720306, 0.07353413105010986, 0.006089196540415287, 0.01957242749631405, 0.03847198933362961, 0.06728949397802353, -0.035937316715717316, 0.07879544794559479, 0.07333336770534515, 0.04736851155757904, 0.011538389138877392, -0.028245463967323303, -0.002618491416797042, -0.031062155961990356, -0.017988691106438637, -0.0006928541697561741, 0.02134944312274456, -0.00983801856637001, -0.014941450208425522, 0.050368782132864, 0.03506931662559509, -0.0375671349465847, 0.06481344997882843, -0.017832858487963676, 0.09974528849124908, 0.0759539008140564, 0.04303668066859245, -0.06741522997617722, -0.007888122461736202, -0.00948367826640606, 0.056674420833587646, -0.07093019783496857, -0.026525655761361122, -0.06229664012789726, -0.004365724511444569, -0.0082559734582901, -0.048105400055646896, -0.009793690405786037, 0.009730719961225986, 0.05810187757015228, 0.00211432040669024, 0.04296628013253212, 0.01661265268921852, -0.05277421325445175, 0.06226169690489769, -0.06507214903831482, 0.07803644984960556, -0.00043742620619013906, -0.06474535167217255, -0.01132255420088768, 0.009515254758298397, -0.024959199130535126, 0.021848494186997414, -0.021520845592021942, 0.060353025794029236, 0.03179959952831268, -0.053999997675418854, 0.09948242455720901, 0.019053108990192413, -0.026717975735664368, -0.015496077947318554, -0.054537706077098846, 0.0938657596707344, 0.11627928912639618, 0.06188085675239563, 0.03762102499604225, -0.008933175355196, -0.0010371007956564426, 0.008353502489626408, -0.036527056246995926, -0.07598059624433517, -0.09607816487550735, 0.07864778488874435, 0.022098714485764503, -0.008352328091859818, -0.0627734586596489, 0.04037037864327431, -0.05801277235150337, 0.019783368334174156, -0.06389287859201431, 0.020219316706061363, 0.018615199252963066, -1.655761118620957e-33, 0.009877029806375504, -0.009482169523835182, 0.02308661863207817, -0.004151664208620787, 0.0174797885119915, -0.027757376432418823, -0.06235054135322571, -0.10744601488113403, -0.015154913999140263, 0.04922540485858917, 0.015235529281198978, 0.0023116490337997675, -0.008898233063519001, -0.0015731749590486288, 0.08697209507226944, -0.08132398873567581, -0.017207598313689232, -0.0345158576965332, -0.042846426367759705, -0.020102327689528465, -0.08920072764158249, 0.054044194519519806, 0.016628654673695564, -0.04271530359983444, 0.04398912936449051, -0.008994725532829762, -0.021843064576387405, 0.0007728863856755197, -0.009715941734611988, 0.011907369829714298, 0.002742213662713766, 0.01864696852862835, 0.019282113760709763, 0.039725933223962784, -0.03898489847779274, -0.03884253278374672, -0.045897476375103, 0.009804354049265385, 0.039162445813417435, -0.018794920295476913, 0.09812404215335846, -0.016277752816677094, 0.027440372854471207, -0.005530003923922777, 0.006911634933203459, 0.037527602165937424, 0.0671696737408638, 0.051767025142908096, -0.006298600230365992, 0.03246104344725609, 0.006846392061561346, -0.0005755324964411557, -0.0001628361496841535, -0.1204533651471138, 0.0056826467625796795, -0.04330821335315704, 0.04193680360913277, 0.026812154799699783, -0.05113205313682556, 0.04141787812113762, 0.07433092594146729, 0.06873390823602676, 0.01247532106935978, -0.05609435588121414, 0.0029977764934301376, -0.04025498032569885, -0.025069786235690117, 0.025290148332715034, 0.047514356672763824, -0.006088415160775185, -0.030234798789024353, -0.033466119319200516, 0.08990219235420227, 0.0335385799407959, 0.08879780024290085, -0.0002299257175764069, -0.05571481212973595, 0.030522076413035393, 0.0038267234340310097, -0.01661863923072815, -0.0010013439459726214, -0.0130685456097126, -0.038468096405267715, -0.05789025127887726, -0.03302381932735443, 0.05243457853794098, -0.026974167674779892, 0.030915336683392525, 0.024167031049728394, -0.0255342498421669, -0.05476035550236702, -0.06302448362112045, -0.05610208958387375, 0.0833798348903656, -0.03895794227719307, -3.960441128479392e-34, 0.022863760590553284, 0.10207013040781021, 0.0688871219754219, 0.0982140377163887, 0.06137752905488014, 0.010544342920184135, -0.000391054549254477, 0.002705029910430312, 0.05844781920313835, 0.07892973721027374, 0.13130763173103333, 0.039599623531103134, 0.018396489322185516, 0.03558150678873062, 0.09255500137805939, -0.04853576049208641, 0.025175992399454117, 0.010160214267671108, -0.0028674229979515076, 0.015248472802340984, 0.10660535097122192, -0.09752658009529114, 0.021219709888100624, -0.0426020473241806, -0.05119689181447029, -0.006486449856311083, 0.05696258321404457, 0.00617651641368866, -0.07825794070959091, 0.09419754147529602, 0.032887984067201614, 0.04361485317349434, -0.09253711998462677, 0.005231570918112993, -0.0406847819685936, -0.07784286886453629, 0.0019209403544664383, 0.15418025851249695, 0.011392590589821339, -0.015618850477039814, 0.054995790123939514, -0.0012074302649125457, 0.03375902399420738, 0.09584222733974457, -0.06302893161773682, -0.05525470897555351, -0.03505924344062805, 0.033430714160203934, -0.1057361587882042, -0.009254706092178822, -0.06690337508916855, 0.04235497862100601, -0.021449629217386246, -0.022702427580952644, 0.03260280191898346, -0.03392025828361511, -0.023122528567910194, -0.027993176132440567, -0.0658854991197586, 0.1056138128042221, -0.024872466921806335, 0.12864264845848083, 0.020955033600330353, -0.008742048405110836, -0.00909708347171545, 0.031954262405633926, -0.04861793294548988, -0.06597558408975601, -0.08507664501667023, 0.024238204583525658, 0.043227698653936386, -0.12735897302627563, 0.052137166261672974, -0.0021021421998739243, -0.003883311292156577, -0.07501952350139618, -0.02674226649105549, 0.061963196843862534, 0.01825663633644581, -0.027199946343898773, 0.03599102795124054, -0.051836080849170685, 0.0850830003619194, 0.056033384054899216, -0.009193526580929756, 0.12478725612163544, -0.04268088936805725, 0.067522332072258, 0.07580719143152237, 0.052465952932834625, 0.03982752934098244, 0.06523672491312027, 0.05105689913034439, 0.02383412979543209, -0.11846760660409927, -1.3306586055250591e-08, -0.013090557418763638, -0.01640155166387558, -0.003324463963508606, -0.03678896650671959, -0.015087904408574104, 0.0034462199546396732, -0.02237309329211712, 0.0036319869104772806, 0.07576882094144821, 0.040222156792879105, -0.03998095542192459, -0.03239518404006958, -0.01787426881492138, 0.0010114200413227081, -0.044215794652700424, 0.025596603751182556, -0.03755879029631615, 0.013538802973926067, -0.025689702481031418, -0.057506367564201355, -0.008689403533935547, -0.04653118923306465, 0.08910363912582397, 0.09133124351501465, 0.05370038002729416, -0.029153279960155487, -0.038612764328718185, -0.05432399734854698, 0.015620443038642406, 0.1069694235920906, 0.00910140946507454, 0.075680673122406, -0.016733981668949127, -0.10656196624040604, 0.07431837171316147, -0.03236152231693268, 0.0028328029438853264, 0.015522695146501064, 0.048521894961595535, -0.05939735472202301, -0.036842141300439835, -0.09082211554050446, 0.03289148584008217, -0.025530429556965828, 0.05186177045106888, -0.12621934711933136, -0.02597256749868393, 0.06992606073617935, -0.05861694738268852, 0.017616279423236847, 0.002750428393483162, -0.033273808658123016, -0.006706875748932362, 0.039273474365472794, 0.0011230127420276403, -0.11467809975147247, -0.03803111985325813, 0.04136740788817406, -0.01877640374004841, 0.01563289761543274, 0.00021950110385660082, -0.09508421272039413, -0.04659019410610199, 0.00043231615563854575], "description_vector": [0.010161378420889378, 0.03702054172754288, 0.015739209949970245, 0.0011658361181616783, 0.07188732922077179, -0.03905102238059044, 0.08338362723588943, 0.0315282866358757, -0.03263932093977928, 0.042967427521944046, -0.025904344394803047, 0.017779702320694923, -0.0933217778801918, 0.0326097309589386, -0.04391865059733391, 0.01360283326357603, 0.047254595905542374, -0.00011384738172637299, -0.0005159328575246036, -0.044058315455913544, 0.016640568152070045, -0.07310980558395386, 0.10624560713768005, 0.06056896969676018, -0.0021399068646132946, -0.032774172723293304, 0.02251889742910862, -0.012389992363750935, -0.014869646169245243, -0.004939723759889603, -0.049328166991472244, 0.04858872666954994, 0.034833502024412155, 0.025517374277114868, -0.014575554057955742, -0.017493491992354393, 0.08115442842245102, 0.027120918035507202, 0.05032927542924881, 0.02507568895816803, -0.037313755601644516, -0.05492451414465904, 0.016460513696074486, 0.027878237888216972, 0.011246489360928535, 0.013711998239159584, -0.003082460956647992, 0.11032824963331223, -0.05893594026565552, 0.06308192759752274, 0.07183311134576797, -0.011128542944788933, 0.04002918675541878, -0.04802154377102852, -0.00827194657176733, -0.04036792367696762, -0.035770855844020844, 0.05011511594057083, -0.013298486359417439, -0.044574420899152756, 0.011838864535093307, -0.002894731005653739, -0.08008749037981033, 0.03864732012152672, 0.051154691725969315, -0.061857521533966064, -0.017183657735586166, 0.07069447636604309, 0.010612710379064083, 0.0014670860255137086, -0.002946153748780489, 0.02350582554936409, 0.016878938302397728, 0.0632895678281784, -0.058033015578985214, 0.0034876116551458836, 0.016017170622944832, 0.071796715259552, -0.06535032391548157, 0.03986765816807747, -0.007038006093353033, 0.017479082569479942, 0.08130983263254166, 0.07145143300294876, -0.012097056955099106, 0.03068615309894085, -0.016431594267487526, 0.005457960534840822, 0.024317126721143723, -0.10093965381383896, -0.01196349784731865, 0.04783400893211365, -0.08667395263910294, -0.03092586249113083, -0.007282607723027468, 0.03844574838876724, -0.008504028432071209, 0.08764616400003433, 0.037653543055057526, 0.01522647961974144, 0.0409034788608551, -0.05847250670194626, 0.05021270364522934, 0.05126671865582466, -0.04422769322991371, -0.08685361593961716, 0.003227476729080081, 0.004578131716698408, 0.05973103642463684, 0.08467425405979156, -0.04853644594550133, -0.01048202347010374, -0.010526526719331741, 0.024614492431282997, -0.04642181843519211, -0.09703759849071503, -0.07001469284296036, 0.10616669058799744, 0.053978294134140015, -0.023879986256361008, -0.04874569922685623, 0.06601633131504059, -0.08058817684650421, -0.05896075442433357, -0.13508038222789764, -0.043088026344776154, 0.000995646696537733, 2.2714218767603145e-33, -0.020835980772972107, 0.019444383680820465, -0.005697805434465408, -0.09005845338106155, -0.001646201591938734, -0.046056147664785385, -0.0546686053276062, -0.12869136035442352, -0.06599701941013336, 0.024778585880994797, 0.0072272708639502525, -0.0940731093287468, 0.0002973833179567009, 0.04018126428127289, 0.14713451266288757, -0.0014650840312242508, -0.0826813355088234, -0.04341892525553703, 0.003841859521344304, -0.003418280743062496, -0.07854100316762924, 0.05515064299106598, 0.04782014340162277, -0.013135364279150963, -0.023230714723467827, -0.07441858947277069, 0.023318957537412643, -0.044987455010414124, -0.04983216151595116, 0.010528222657740116, 0.0838194340467453, 0.01037422101944685, 0.02928449958562851, -0.03653614968061447, -0.074612557888031, 0.020795149728655815, -0.0422525480389595, -0.0498194620013237, 0.057267580181360245, 0.015563633292913437, 0.06329477578401566, -0.03759701922535896, 0.09781251847743988, 0.025663431733846664, -0.05832948163151741, 0.06561121344566345, 0.061049677431583405, 0.054767780005931854, -0.0033835957292467356, 0.02143270894885063, 0.012685918249189854, 0.06992939114570618, -0.011592091992497444, -0.16527609527111053, -0.011534648947417736, 0.0042526088654994965, 0.052953045815229416, -0.055317044258117676, -0.01145183015614748, 0.05402963235974312, -0.006338823586702347, 0.05134459584951401, 0.04337993636727333, -0.05226071923971176, -0.026053668931126595, -0.03815265744924545, 0.0782470703125, -0.025127027183771133, 0.008668338879942894, 0.022089404985308647, -0.09048391878604889, 0.09108150005340576, 0.048597417771816254, 0.04186404123902321, 0.020110396668314934, -0.02498611807823181, 0.01974564418196678, 0.05133293941617012, 0.06044933199882507, -0.05958566442131996, -0.04212716966867447, -0.07524938136339188, -0.0054306527599692345, -0.032192882150411606, 0.039365340024232864, -0.02071319706737995, -0.02603195235133171, -0.014177943579852581, 0.008818913251161575, 0.029714321717619896, 0.047859568148851395, -0.05102498456835747, -0.08445559442043304, 0.0259105134755373, -0.0004852373094763607, -4.077412642784298e-33, 0.022540751844644547, 0.013003397732973099, 0.04559183493256569, 0.062101636081933975, -0.040584154427051544, 0.053073134273290634, -0.08117417246103287, 0.012202028185129166, 0.01164914295077324, 0.0940205305814743, 0.05236241966485977, 0.03606709465384483, 0.006249205209314823, 0.04096098989248276, 0.06960918009281158, 0.03048417530953884, 0.042175084352493286, 0.02744436077773571, -0.05423027649521828, -0.08815961331129074, 0.0595165379345417, -0.06520593166351318, 0.003464370034635067, -0.042547427117824554, -0.0780482292175293, -0.0036021023988723755, 0.027739044278860092, -0.020817967131733894, -0.0419309139251709, -0.0026255303528159857, 0.012655106373131275, -0.023431112989783287, -0.07530327141284943, -0.0517398975789547, -0.011056969873607159, -0.06054738536477089, -0.04607042297720909, 0.0597958117723465, 0.042488787323236465, -0.060952261090278625, 0.016426363959908485, -0.013031595386564732, 0.06506296992301941, 0.003462886204943061, -0.057668305933475494, -0.0703829750418663, -0.06961894780397415, 0.05947813764214516, -0.05941075459122658, -0.00340747507289052, -0.009183846414089203, 0.040401216596364975, 0.038409847766160965, -0.015584977343678474, 0.005268055014312267, 0.019547075033187866, -0.10211063176393509, -0.02292485535144806, -0.061357829719781876, -0.05041201785206795, -0.05535493418574333, 0.09845820814371109, -0.003922868520021439, 0.03788936883211136, 0.0520150400698185, 0.024573203176259995, -0.052109092473983765, -0.056078847497701645, -0.04373156279325485, 0.05828504636883736, 0.06998252868652344, 0.004192084539681673, -0.011104214936494827, -0.03741515055298805, -0.03904280811548233, -0.01949825882911682, 0.017010901123285294, 0.004395828116685152, -0.03187746927142143, 0.07295704632997513, 0.07698697596788406, 0.00701597984880209, 0.03406830132007599, -0.006441427860409021, 0.06518373638391495, 0.07902119308710098, -0.044539082795381546, 0.10940886288881302, -0.020032770931720734, 0.057561181485652924, 0.12484627962112427, 0.08077145367860794, -0.10618606954813004, 0.033728983253240585, -0.00510417902842164, -3.23462785445372e-08, -0.048488128930330276, -0.016018005087971687, -0.04109257459640503, -0.014666708186268806, -0.05356503278017044, 0.008911820128560066, 0.010779100470244884, 0.007690900005400181, 0.013321703299880028, -0.0009872508235275745, 0.018134726211428642, -0.037340905517339706, -0.04214620962738991, 0.08042184263467789, -0.027734100818634033, -0.06564615666866302, -0.045965902507305145, 0.08726167678833008, -0.06597186625003815, -0.013915765099227428, -0.03980376571416855, -0.005563430022448301, 0.07671931385993958, 0.05692272260785103, -0.05079563707113266, 0.0270135048776865, -0.008341223932802677, -0.03033352643251419, 0.010472777299582958, 0.06287212669849396, 0.0015228738775476813, 0.056547053158283234, -0.018671594560146332, -0.057460445910692215, -0.0747397243976593, -0.009441651403903961, 0.0017514049541205168, -0.09026125073432922, 0.04985814541578293, -0.008639723062515259, 0.007795941550284624, -0.06974046677350998, 0.07303695380687714, 0.039134345948696136, 0.06560133397579193, -0.13380663096904755, -0.010383693501353264, 0.0009092314867302775, -0.06193683668971062, 0.02789519727230072, -0.036339085549116135, -0.04760896787047386, 0.01480646152049303, 0.03341684862971306, -0.020672008395195007, -0.044537436217069626, -0.08806760609149933, -0.0018533698748797178, -0.0043679638765752316, 0.06391018629074097, -0.005339599214494228, -0.1570952832698822, 0.04734744504094124, 0.08656676858663559], "id": "ab4f0cca-6a84-51e1-b7e8-523724db8728"}
{"index": {"_id": "f8a91e89-c5db-5fa5-9428-1f580a72d05e"}}
{"actual_price": "1499", "average_rating": "3.7", "brand": "York", "category": "Clothing and Accessories", "crawled_at": "10-02-2021 20:11:56", "description": "Yorker trackpants made from 100% rich combed cotton giving it a rich look.Designed for Comfort,Skin friendly fabric,itch-free waistband & great for all year round use Proudly made in India", "discount": "64% off", "images": ["https://rukminim1.flixcart.com/image/128/128/kihqz680-0/track-pant/c/h/b/xl-ep-tp1005-epoxy-original-imafdbjfg3f9hwtv.jpeg?q=70", "https://rukminim1.flixcart.com/image/128/128/kihqz680-0/track-pant/n/p/7/xl-ep-tp1005-epoxy-original-imafczg3jhusmjx6.jpeg?q=70"], "out_of_stock": false, "pid": "TKPFDABN4NQFVKZY", "product_details": [{"Style Code": "1005MLGREY"}, {"Closure": "Elastic"}, {"Pockets": "Side Pockets"}, {"Fabric": "Cotton Blend"}, {"Pattern": "Solid"}, {"Color": "Grey"}], "seller": "Shyam Enterprises", "selling_price": "531", "sub_category": "Bottomwear", "title": "Solid Men Grey Track Pants", "url": "https://www.flipkart.com/yorker-solid-men-grey-track-pants/p/itm68f2a4557acfa?pid=TKPFDABN4NQFVKZY&lid=LSTTKPFDABN4NQFVKZYOLSGIO&marketplace=FLIPKART&srno=b_1_10&otracker=browse&fm=organic&iid=177a46eb-d053-4732-b3de-fcad6ff59cbd.TKPFDABN4NQFVKZY.SEARCH&ssid=utkd4t3gb40000001612415717799", "title_vector": [-0.051956333220005035, 0.009527187794446945, 0.024578386917710304, 0.04096544161438942, -0.00783015787601471, -0.026853786781430244, 0.07091893255710602, -0.02745923027396202, -0.11667447537183762, -0.015658291056752205, -0.08016116917133331, -0.0040200697258114815, -0.03132314234972, -0.010087725706398487, -0.05376644805073738, -0.03464842587709427, 0.035124387592077255, 0.005657064262777567, -0.056183915585279465, -0.021127572283148766, 0.04467479884624481, -0.01985406130552292, -0.050822556018829346, -0.00045713502913713455, -0.14247164130210876, 0.038228265941143036, -0.00963661354035139, 0.03796391189098358, -0.047965265810489655, -0.041305072605609894, -0.07071764022111893, -0.035822611302137375, -0.004111100919544697, -0.011445078998804092, -0.0011216497514396906, -0.14892655611038208, 0.010917874984443188, -0.023703107610344887, -0.06186855211853981, -0.00621393509209156, -0.01802443526685238, -0.10164214670658112, 0.005471495445817709, 0.07153116166591644, 0.027521610260009766, 0.05205360800027847, 0.030984122306108475, -0.017087481915950775, 0.020853862166404724, 0.034489840269088745, 0.03383193537592888, -0.051091063767671585, 0.08461041003465652, 0.05598919838666916, 0.05230380967259407, 0.0036819190718233585, -0.00365637824870646, -0.027049634605646133, -0.020925356075167656, -0.06580978631973267, 0.0258640106767416, 0.03759956732392311, -0.023705700412392616, -0.034004610031843185, 0.04529431834816933, 0.040936730802059174, -0.03034459799528122, 0.0413508415222168, -0.03363954275846481, 0.059252649545669556, 0.06568688154220581, -0.013026539236307144, -0.08987726271152496, -0.017557799816131592, -0.01087806187570095, 0.06651867926120758, -0.04830830171704292, -0.028568001464009285, -0.07950501143932343, -0.04322995990514755, -0.02290428802371025, -0.002316494006663561, 0.03450195863842964, -0.006655482109636068, 0.009522954002022743, 0.017334014177322388, 0.037005893886089325, 0.03608410432934761, -0.03831033036112785, 0.048630256205797195, -0.09252292662858963, 0.055066801607608795, -0.020122317597270012, -0.01266389898955822, 0.0010673238430172205, 0.022894982248544693, -0.06178327649831772, 0.05733666568994522, -0.05576688423752785, 0.04095364734530449, 0.03193235024809837, -0.02478818967938423, 0.11172431707382202, -0.0005561364814639091, -0.04306193068623543, -0.038904402405023575, 0.012203771620988846, 0.06674779206514359, 0.09781026840209961, 0.037515461444854736, 0.007257132325321436, 0.012587609700858593, -0.015407749451696873, 0.05220126733183861, -0.03390096127986908, -0.1004917323589325, -0.07760936766862869, 0.11041480302810669, -0.0070859347470104694, -0.03243209421634674, -0.009555921889841557, 0.05830255150794983, -0.04803594946861267, 0.045988257974386215, -0.074269600212574, 0.013462061993777752, 0.02228786237537861, -1.5138841850999879e-33, -0.0022222462575882673, -0.023734398186206818, 0.008303461596369743, 0.017696263268589973, 0.007803468033671379, -0.022589819505810738, -0.06213909015059471, -0.1078537255525589, -0.010295534506440163, 0.03456403687596321, 0.0012549100210890174, 0.027417849749326706, -0.017376912757754326, -0.008239862509071827, 0.04971151798963547, -0.03498117998242378, -0.005607446655631065, 0.00774407060816884, -0.057376518845558167, 0.026450276374816895, -0.0677383542060852, 0.06306012719869614, 0.01579899713397026, -0.04262646660208702, 0.06449102610349655, -0.011665668338537216, -0.048546165227890015, -0.025453589856624603, -0.0016273887595161796, 0.00016867229714989662, -0.038812872022390366, -0.005614240653812885, 0.06755202263593674, 0.06111791357398033, -0.05757351592183113, -0.028054293245077133, -0.03071107342839241, 0.02268429845571518, 0.05521424487233162, 0.013932396657764912, 0.07270734012126923, 0.02010665461421013, 0.042680587619543076, 0.02825656346976757, -0.005682976916432381, 0.07337541878223419, 0.08129359781742096, 0.07478157430887222, 0.006919877137988806, 0.039011042565107346, -0.012483717873692513, 0.04008704423904419, -0.002469446277245879, -0.12383612990379333, -0.02743425965309143, -0.03412146121263504, 0.046387895941734314, 0.04338585585355759, -0.039644625037908554, -0.012278242968022823, 0.09423749148845673, 0.06115739047527313, -0.009235444478690624, -0.09147009253501892, 0.015522471629083157, 0.006494898349046707, -0.03133238106966019, -0.002314087701961398, 0.035773731768131256, 0.034223806113004684, -0.04668654128909111, -0.05563828721642494, 0.13260668516159058, 0.035478316247463226, 0.0997578576207161, -0.022187883034348488, -0.018720034509897232, 0.00784937385469675, -0.018427737057209015, -0.018608996644616127, -0.011321531608700752, -0.0020374469459056854, -0.07968180626630783, -0.045912258327007294, -0.0206000879406929, 0.03799181059002876, -0.024796048179268837, 0.04562203213572502, 0.009970518760383129, -0.058553650975227356, -0.051153864711523056, -0.04027847573161125, -0.056051936000585556, 0.04610491544008255, -0.0182021576911211, -2.139090232874511e-34, 0.047451332211494446, 0.08007935434579849, 0.019489845260977745, 0.12300784140825272, 0.08657792210578918, 0.03753814846277237, -0.03171432390809059, 0.014573362655937672, 0.07361581921577454, 0.08521655201911926, 0.143806591629982, 0.010097960941493511, 0.008655786514282227, 0.05038446933031082, 0.0822572186589241, -0.029898950830101967, 0.02025119587779045, 0.01574137434363365, -0.020609738305211067, -0.011303623206913471, 0.09758668392896652, -0.08514533936977386, 0.015304002910852432, -0.01546280924230814, 0.013642816804349422, 0.041107501834630966, 0.05594082921743393, 0.004062081687152386, -0.0961349755525589, 0.05113280564546585, -0.026948178187012672, 0.04920462146401405, -0.06707148253917694, -0.017650602385401726, -0.0023295157589018345, -0.07255914062261581, 0.01852845586836338, 0.16530422866344452, 0.015413228422403336, -0.02208169363439083, -0.018364192917943, 0.028230110183358192, 0.08419319242238998, 0.09808330237865448, -0.05282887816429138, -0.04955195635557175, -0.04639020934700966, 0.011070609092712402, -0.09903069585561752, -0.007459050510078669, -0.017513856291770935, 0.05698094144463539, -0.041288357228040695, -0.033691320568323135, -0.0145441684871912, 0.0030687295366078615, -0.041881538927555084, 0.04109451174736023, -0.0602860227227211, 0.08548738807439804, -0.06035663187503815, 0.09366073459386826, 0.020866574719548225, 0.0009828954935073853, -0.017100965604186058, 0.05409593880176544, -0.047039248049259186, -0.08206421881914139, -0.07060129195451736, 0.01750902272760868, -0.004635312128812075, -0.10126403719186783, 0.09058016538619995, -0.046254850924015045, -0.003499736776575446, -0.08268730342388153, 0.011331785470247269, 0.032447099685668945, 0.021461017429828644, -0.031334295868873596, 0.04738139733672142, -0.02734164148569107, 0.07544562965631485, 0.025448692962527275, 0.013132056221365929, 0.11801815032958984, -0.05389808118343353, 0.07965972274541855, 0.03929462656378746, 0.03105985000729561, 0.022313738241791725, 0.03698112443089485, 0.023718751966953278, 0.0461881197988987, -0.12398228794336319, -1.3182303248981952e-08, -0.012559553608298302, -0.0027212125714868307, -0.0315539725124836, 0.0007649044273421168, -0.03925687447190285, 0.008828879334032536, -0.052420832216739655, -0.003917953930795193, 0.0737096294760704, 0.05541124567389488, 0.019479524344205856, -0.0627945214509964, -0.03757471218705177, 0.03283475339412689, -0.005952894221991301, -0.00277845305390656, -0.08972997218370438, 0.04132739454507828, -0.029672611504793167, -0.03885579854249954, 0.0035940988454967737, -0.03838248923420906, 0.036296647042036057, 0.13939453661441803, 0.023711420595645905, -0.0279478020966053, 0.01288788765668869, -0.07590984553098679, 0.011261392384767532, 0.08352707326412201, 0.018551262095570564, 0.07645183801651001, -0.0077495453879237175, -0.05399688705801964, 0.054955437779426575, -0.055971909314394, -0.016384180635213852, 0.029843715950846672, 0.055673521012067795, -0.060250066220760345, -0.03662751987576485, -0.07840406894683838, 0.0466623418033123, -0.016845079138875008, 0.07589489221572876, -0.13551390171051025, 0.02374950237572193, 0.07085425406694412, -0.05452164635062218, -0.013727325946092606, 0.016836147755384445, 0.007682261988520622, 0.008557857014238834, 0.04398498311638832, -0.003470692317932844, -0.07950948923826218, -0.0195652823895216, 0.04851517081260681, 0.005445767194032669, 0.01145253237336874, -0.03391329199075699, -0.10585064440965652, -0.02501697652041912, 0.019847458228468895], "description_vector": [0.010161378420889378, 0.03702054172754288, 0.015739209949970245, 0.0011658361181616783, 0.07188732922077179, -0.03905102238059044, 0.08338362723588943, 0.0315282866358757, -0.03263932093977928, 0.042967427521944046, -0.025904344394803047, 0.017779702320694923, -0.0933217778801918, 0.0326097309589386, -0.04391865059733391, 0.01360283326357603, 0.047254595905542374, -0.00011384738172637299, -0.0005159328575246036, -0.044058315455913544, 0.016640568152070045, -0.07310980558395386, 0.10624560713768005, 0.06056896969676018, -0.0021399068646132946, -0.032774172723293304, 0.02251889742910862, -0.012389992363750935, -0.014869646169245243, -0.004939723759889603, -0.049328166991472244, 0.04858872666954994, 0.034833502024412155, 0.025517374277114868, -0.014575554057955742, -0.017493491992354393, 0.08115442842245102, 0.027120918035507202, 0.05032927542924881, 0.02507568895816803, -0.037313755601644516, -0.05492451414465904, 0.016460513696074486, 0.027878237888216972, 0.011246489360928535, 0.013711998239159584, -0.003082460956647992, 0.11032824963331223, -0.05893594026565552, 0.06308192759752274, 0.07183311134576797, -0.011128542944788933, 0.04002918675541878, -0.04802154377102852, -0.00827194657176733, -0.04036792367696762, -0.035770855844020844, 0.05011511594057083, -0.013298486359417439, -0.044574420899152756, 0.011838864535093307, -0.002894731005653739, -0.08008749037981033, 0.03864732012152672, 0.051154691725969315, -0.061857521533966064, -0.017183657735586166, 0.07069447636604309, 0.010612710379064083, 0.0014670860255137086, -0.002946153748780489, 0.02350582554936409, 0.016878938302397728, 0.0632895678281784, -0.058033015578985214, 0.0034876116551458836, 0.016017170622944832, 0.071796715259552, -0.06535032391548157, 0.03986765816807747, -0.007038006093353033, 0.017479082569479942, 0.08130983263254166, 0.07145143300294876, -0.012097056955099106, 0.03068615309894085, -0.016431594267487526, 0.005457960534840822, 0.024317126721143723, -0.10093965381383896, -0.01196349784731865, 0.04783400893211365, -0.08667395263910294, -0.03092586249113083, -0.007282607723027468, 0.03844574838876724, -0.008504028432071209, 0.08764616400003433, 0.037653543055057526, 0.01522647961974144, 0.0409034788608551, -0.05847250670194626, 0.05021270364522934, 0.05126671865582466, -0.04422769322991371, -0.08685361593961716, 0.003227476729080081, 0.004578131716698408, 0.05973103642463684, 0.08467425405979156, -0.04853644594550133, -0.01048202347010374, -0.010526526719331741, 0.024614492431282997, -0.04642181843519211, -0.09703759849071503, -0.07001469284296036, 0.10616669058799744, 0.053978294134140015, -0.023879986256361008, -0.04874569922685623, 0.06601633131504059, -0.08058817684650421, -0.05896075442433357, -0.13508038222789764, -0.043088026344776154, 0.000995646696537733, 2.2714218767603145e-33, -0.020835980772972107, 0.019444383680820465, -0.005697805434465408, -0.09005845338106155, -0.001646201591938734, -0.046056147664785385, -0.0546686053276062, -0.12869136035442352, -0.06599701941013336, 0.024778585880994797, 0.0072272708639502525, -0.0940731093287468, 0.0002973833179567009, 0.04018126428127289, 0.14713451266288757, -0.0014650840312242508, -0.0826813355088234, -0.04341892525553703, 0.003841859521344304, -0.003418280743062496, -0.07854100316762924, 0.05515064299106598, 0.04782014340162277, -0.013135364279150963, -0.023230714723467827, -0.07441858947277069, 0.023318957537412643, -0.044987455010414124, -0.04983216151595116, 0.010528222657740116, 0.0838194340467453, 0.01037422101944685, 0.02928449958562851, -0.03653614968061447, -0.074612557888031, 0.020795149728655815, -0.0422525480389595, -0.0498194620013237, 0.057267580181360245, 0.015563633292913437, 0.06329477578401566, -0.03759701922535896, 0.09781251847743988, 0.025663431733846664, -0.05832948163151741, 0.06561121344566345, 0.061049677431583405, 0.054767780005931854, -0.0033835957292467356, 0.02143270894885063, 0.012685918249189854, 0.06992939114570618, -0.011592091992497444, -0.16527609527111053, -0.011534648947417736, 0.0042526088654994965, 0.052953045815229416, -0.055317044258117676, -0.01145183015614748, 0.05402963235974312, -0.006338823586702347, 0.05134459584951401, 0.04337993636727333, -0.05226071923971176, -0.026053668931126595, -0.03815265744924545, 0.0782470703125, -0.025127027183771133, 0.008668338879942894, 0.022089404985308647, -0.09048391878604889, 0.09108150005340576, 0.048597417771816254, 0.04186404123902321, 0.020110396668314934, -0.02498611807823181, 0.01974564418196678, 0.05133293941617012, 0.06044933199882507, -0.05958566442131996, -0.04212716966867447, -0.07524938136339188, -0.0054306527599692345, -0.032192882150411606, 0.039365340024232864, -0.02071319706737995, -0.02603195235133171, -0.014177943579852581, 0.008818913251161575, 0.029714321717619896, 0.047859568148851395, -0.05102498456835747, -0.08445559442043304, 0.0259105134755373, -0.0004852373094763607, -4.077412642784298e-33, 0.022540751844644547, 0.013003397732973099, 0.04559183493256569, 0.062101636081933975, -0.040584154427051544, 0.053073134273290634, -0.08117417246103287, 0.012202028185129166, 0.01164914295077324, 0.0940205305814743, 0.05236241966485977, 0.03606709465384483, 0.006249205209314823, 0.04096098989248276, 0.06960918009281158, 0.03048417530953884, 0.042175084352493286, 0.02744436077773571, -0.05423027649521828, -0.08815961331129074, 0.0595165379345417, -0.06520593166351318, 0.003464370034635067, -0.042547427117824554, -0.0780482292175293, -0.0036021023988723755, 0.027739044278860092, -0.020817967131733894, -0.0419309139251709, -0.0026255303528159857, 0.012655106373131275, -0.023431112989783287, -0.07530327141284943, -0.0517398975789547, -0.011056969873607159, -0.06054738536477089, -0.04607042297720909, 0.0597958117723465, 0.042488787323236465, -0.060952261090278625, 0.016426363959908485, -0.013031595386564732, 0.06506296992301941, 0.003462886204943061, -0.057668305933475494, -0.0703829750418663, -0.06961894780397415, 0.05947813764214516, -0.05941075459122658, -0.00340747507289052, -0.009183846414089203, 0.040401216596364975, 0.038409847766160965, -0.015584977343678474, 0.005268055014312267, 0.019547075033187866, -0.10211063176393509, -0.02292485535144806, -0.061357829719781876, -0.05041201785206795, -0.05535493418574333, 0.09845820814371109, -0.003922868520021439, 0.03788936883211136, 0.0520150400698185, 0.024573203176259995, -0.052109092473983765, -0.056078847497701645, -0.04373156279325485, 0.05828504636883736, 0.06998252868652344, 0.004192084539681673, -0.011104214936494827, -0.03741515055298805, -0.03904280811548233, -0.01949825882911682, 0.017010901123285294, 0.004395828116685152, -0.03187746927142143, 0.07295704632997513, 0.07698697596788406, 0.00701597984880209, 0.03406830132007599, -0.006441427860409021, 0.06518373638391495, 0.07902119308710098, -0.044539082795381546, 0.10940886288881302, -0.020032770931720734, 0.057561181485652924, 0.12484627962112427, 0.08077145367860794, -0.10618606954813004, 0.033728983253240585, -0.00510417902842164, -3.23462785445372e-08, -0.048488128930330276, -0.016018005087971687, -0.04109257459640503, -0.014666708186268806, -0.05356503278017044, 0.008911820128560066, 0.010779100470244884, 0.007690900005400181, 0.013321703299880028, -0.0009872508235275745, 0.018134726211428642, -0.037340905517339706, -0.04214620962738991, 0.08042184263467789, -0.027734100818634033, -0.06564615666866302, -0.045965902507305145, 0.08726167678833008, -0.06597186625003815, -0.013915765099227428, -0.03980376571416855, -0.005563430022448301, 0.07671931385993958, 0.05692272260785103, -0.05079563707113266, 0.0270135048776865, -0.008341223932802677, -0.03033352643251419, 0.010472777299582958, 0.06287212669849396, 0.0015228738775476813, 0.056547053158283234, -0.018671594560146332, -0.057460445910692215, -0.0747397243976593, -0.009441651403903961, 0.0017514049541205168, -0.09026125073432922, 0.04985814541578293, -0.008639723062515259, 0.007795941550284624, -0.06974046677350998, 0.07303695380687714, 0.039134345948696136, 0.06560133397579193, -0.13380663096904755, -0.010383693501353264, 0.0009092314867302775, -0.06193683668971062, 0.02789519727230072, -0.036339085549116135, -0.04760896787047386, 0.01480646152049303, 0.03341684862971306, -0.020672008395195007, -0.044537436217069626, -0.08806760609149933, -0.0018533698748797178, -0.0043679638765752316, 0.06391018629074097, -0.005339599214494228, -0.1570952832698822, 0.04734744504094124, 0.08656676858663559], "id": "f8a91e89-c5db-5fa5-9428-1f580a72d05e"}

query1: grey pants

POST /ecommerce/_search
{"knn":{"field":"title_vector","query_vector":[-0.08829323947429657,0.07790351659059525,0.017654890194535255,0.02217067964375019,-0.012643285095691681,-0.03684194013476372,0.1355573832988739,-0.0415588840842247,0.003975695930421352,0.017755940556526184,-0.026056574657559395,-0.03797800466418266,0.012997125275433064,0.010615561157464981,-0.06131744757294655,0.026115218177437782,0.04680635780096054,-0.0027428215835243464,-0.10593564808368683,-0.07991161942481995,-0.0034263967536389828,0.061540570110082626,-0.05975595861673355,-0.013376820832490921,-0.0986771360039711,0.05744701996445656,-0.008213347755372524,0.022890008985996246,-0.04264990985393524,-0.0668509379029274,-0.06291985511779785,-0.03055788390338421,-0.00360513711348176,0.02972331829369068,-0.0552196241915226,-0.11529240012168884,0.01845644600689411,-0.036374036222696304,-0.06743353605270386,0.021109843626618385,0.006955367513000965,-0.12329692393541336,-0.036346711218357086,0.018989017233252525,-0.014432410709559917,0.08577097952365875,0.08468342572450638,-0.0021976283751428127,0.03911370038986206,0.0022916002199053764,0.036924634128808975,0.0161164291203022,-0.006686293985694647,0.07219009101390839,0.043548453599214554,-0.008684350177645683,-0.031153932213783264,-0.029086671769618988,-0.004566967487335205,-0.10324914008378983,0.026555515825748444,0.039248328655958176,-0.08407942950725555,0.008235554210841656,0.02886967733502388,0.06480254232883453,0.038865845650434494,-0.012390950694680214,-0.062342602759599686,-0.013842156156897545,-0.002342366613447666,0.009163127280771732,-0.014450295828282833,-0.0260305218398571,-0.030401408672332764,0.04772639647126198,0.06554695963859558,-0.055943455547094345,-0.046702269464731216,-0.10360590368509293,-0.008324173279106617,0.007576267700642347,0.017787599936127663,0.07211267203092575,0.008334917947649956,0.05474462732672691,-0.04553757235407829,0.04512958973646164,-0.05770473554730415,-0.009834098629653454,-0.0855601504445076,0.009555242955684662,-0.007234415039420128,0.03881612792611122,-0.038847170770168304,0.022189173847436905,-0.04776792973279953,-0.04892680048942566,-0.010428853332996368,0.11876501888036728,-0.014620334841310978,0.04992292448878288,0.1204557940363884,0.0066032311879098415,-0.03536897525191307,-0.08483324199914932,0.04753183573484421,0.02693038247525692,0.08592618256807327,0.001499215024523437,-0.04920126870274544,0.0022675541695207357,-0.026303904131054878,0.03203461691737175,-0.037673261016607285,-0.09543969482183456,-0.0019975013565272093,0.10224878042936325,-0.006295392289757729,-0.025824761018157005,0.012700711376965046,0.05554921180009842,-0.03419221192598343,0.06204956769943237,-0.09540439397096634,-0.0561809204518795,-0.04028865694999695,-2.862022932050064e-33,0.04500438645482063,-0.09093150496482849,-0.029914725571870804,0.058721769601106644,0.055121153593063354,0.04458419233560562,-0.03244323283433914,-0.09134883433580399,-0.0014202281599864364,0.0566738061606884,-0.0012223155936226249,0.01116754487156868,-0.045401431620121,-0.00529179722070694,0.06813284754753113,0.06123308837413788,0.013032848946750164,0.01608150079846382,-0.009859370067715645,0.0032154018990695477,-0.05866280570626259,0.07617642730474472,0.03166836500167847,0.023800184950232506,0.01179073378443718,-0.056340791285037994,0.018081894144415855,-0.020473694428801537,-0.0063857221975922585,-0.017291702330112457,0.009010262787342072,-0.0014145055320113897,0.0698239728808403,0.03696521744132042,-0.0422973707318306,0.03063822165131569,0.009580622427165508,0.0003389326739124954,0.019984478130936623,0.017628515139222145,0.011774319224059582,0.028840234503149986,0.0556194894015789,0.01997598260641098,-0.023888852447271347,0.04834098741412163,0.0633983463048935,0.01666135899722576,-0.013375959359109402,0.07362361997365952,0.00259818765334785,-0.0009342334233224392,0.007776699028909206,-0.06404952704906464,-0.03601967915892601,-0.04018334671854973,0.04159367084503174,0.0488571897149086,-0.04010610282421112,-0.011508824303746223,0.04911872744560242,0.05788561329245567,-0.031689971685409546,-0.09341621398925781,0.06819441169500351,0.014485549181699753,-0.03065948188304901,0.009839890524744987,0.04933108761906624,-0.019484998658299446,-0.04894186183810234,-0.03006533347070217,0.1688472330570221,0.0331135131418705,0.017813192680478096,-0.05096505582332611,-0.034687209874391556,-0.02790243551135063,-0.002732523251324892,0.004841258283704519,0.006248211022466421,-0.037674080580472946,-0.052211686968803406,0.039022281765937805,0.019189873710274696,0.029966194182634354,0.00001887620055640582,0.02460862696170807,0.026134906336665154,-0.10102278739213943,-0.04617432877421379,-0.007646557874977589,-0.0008061067783273757,-0.03741218522191048,-0.02154460921883583,2.160046174742803e-33,0.06635577976703644,-0.006040461827069521,-0.0335208997130394,0.1543680727481842,0.07322818040847778,0.019585901871323586,-0.01582830213010311,0.03651556372642517,0.002787557430565357,0.035472478717565536,0.15176339447498322,-0.0003213756426703185,0.020333191379904747,0.034585513174533844,0.1210591271519661,0.04829295352101326,0.05213705822825432,0.08839598298072815,0.0189850851893425,-0.018277011811733246,0.0215543694794178,-0.08322994410991669,-0.018293816596269608,-0.005695432890206575,-0.010356170125305653,0.0350283719599247,0.031570177525281906,0.04800138995051384,-0.16032230854034424,-0.05191626772284508,-0.024411501362919807,0.039875373244285583,-0.05989214405417442,0.040871359407901764,0.04496658220887184,0.006271327845752239,0.03688032180070877,0.059618160128593445,0.013396489433944225,-0.07693862915039062,0.02195853181183338,-0.026821667328476906,0.0957123264670372,0.09905820339918137,-0.010791621170938015,0.0020635100081562996,-0.11245173960924149,0.03524065762758255,-0.01417760644108057,-0.0034078152384608984,-0.010634295642375946,0.04948507621884346,-0.05441649258136749,0.0014550958294421434,0.003841402707621455,-0.004653946030884981,-0.05058199539780617,0.05083208158612251,0.012879231944680214,0.08488300442695618,-0.005766591057181358,0.08324666321277618,-0.04047222062945366,0.005228697322309017,-0.08112216740846634,0.0627838522195816,-0.030044300481677055,-0.0510324090719223,-0.04477189853787422,0.019817180931568146,0.02205551601946354,-0.04903360456228256,0.06565729528665543,-0.04777972027659416,-0.05293640121817589,-0.12538017332553864,0.03175763785839081,-0.00994501169770956,0.009343324229121208,-0.005190552677959204,0.03062489815056324,-0.0369611456990242,0.038172993808984756,0.04910031706094742,0.012995156459510326,0.07106935232877731,-0.0026407872792333364,0.09151399880647659,0.05689394474029541,-0.09682665020227432,0.016094982624053955,0.0943034440279007,0.03386056423187256,0.0817529633641243,-0.06842471659183502,-1.149593309435204e-8,0.015311085619032383,0.01303806807845831,-0.053127139806747437,-0.005218617618083954,-0.005026903469115496,-0.016600841656327248,-0.10473480820655823,0.012669533491134644,0.04446706548333168,0.04384840652346611,0.04194839671254158,-0.0703786164522171,-0.0220667514950037,0.08863882720470428,-0.001657481654547155,0.036388084292411804,-0.05660754442214966,-0.034199006855487823,0.007971559651196003,-0.012203431688249111,-0.014180502854287624,-0.018776910379529,0.03147074580192566,0.11049770563840866,0.020490938797593117,-0.06341753900051117,0.01793859899044037,-0.02677200920879841,0.015605531632900238,0.09798836708068848,-0.005509760230779648,0.0803186297416687,-0.05387283116579056,-0.023081699386239052,-0.04847809299826622,-0.07334937900304794,0.03605208173394203,-0.0026002684608101845,0.023962002247571945,-0.0753309428691864,-0.03567192330956459,-0.07968373596668243,0.06213328614830971,-0.02733095921576023,0.06310887634754181,-0.09095361083745956,0.008260417729616165,0.025208553299307823,-0.08161666244268417,-0.02166195586323738,0.02660909667611122,0.02172473818063736,0.04159368574619293,0.06284265220165253,-0.0027221094351261854,-0.08301486819982529,0.01473134197294712,0.0418824702501297,-0.0029698272701352835,0.04892402142286301,-0.033466044813394547,-0.06419789046049118,-0.06917093694210052,-0.023375647142529488],"k":10,"num_candidates":100},"_source":["title","category"]}

query2: blue pants

POST /ecommerce/_search
{"knn":{"field":"title_vector","query_vector":[-0.10404805839061737,0.059559326618909836,-0.00008955458179116249,0.02308870293200016,-0.0285921823233366,0.008394220843911171,0.17738698422908783,-0.03597739711403847,0.01930209994316101,0.014248507097363472,-0.017018437385559082,0.004280412569642067,0.04386516287922859,-0.02766784466803074,-0.010953977704048157,0.0764709934592247,0.05934809893369675,-0.025536570698022842,-0.11432188004255295,-0.06045643240213394,-0.002906333189457655,0.06961473077535629,-0.023641236126422882,0.06790432333946228,-0.08795962482690811,0.035278379917144775,0.02539863996207714,0.04468913376331329,-0.06028781831264496,-0.0298071950674057,-0.05868464335799217,0.03083917871117592,0.008697617799043655,-0.005519327707588673,-0.04208030551671982,-0.07259280234575272,0.06187848001718521,-0.046493008732795715,-0.029587114229798317,0.0018488422501832247,-0.015765246003866196,-0.08125919848680496,0.0021714104805141687,-0.012415530160069466,0.01350327581167221,0.037079744040966034,0.05939081683754921,0.03378995507955551,0.05192588269710541,0.005940564908087254,0.06442897021770477,0.05269531160593033,-0.02662631683051586,0.0870809406042099,0.01701800525188446,0.050605081021785736,-0.05272099748253822,-0.020394403487443924,0.029145557433366776,-0.04459628835320473,-0.012603053823113441,0.04757130518555641,-0.05695018172264099,0.0478530079126358,0.0364595390856266,0.035495638847351074,0.021277951076626778,0.0650738775730133,-0.08363533020019531,0.004071539733558893,0.006644423585385084,-0.011352014727890491,0.0031778928823769093,0.023780876770615578,0.04180720075964928,0.004251968115568161,0.076505146920681,-0.04300959035754204,-0.05903078615665436,-0.09907266497612,-0.026282912120223045,-0.11302921921014786,-0.01379417721182108,0.10246944427490234,0.010643361136317253,0.058844149112701416,-0.0005353361484594643,-0.007972788996994495,-0.07935648411512375,-0.004395355936139822,-0.05416957288980484,-0.0035139203537255526,-0.001602787640877068,-0.01976904831826687,-0.0631764605641365,0.037178657948970795,0.004058175720274448,-0.11146239191293716,0.03144660219550133,0.1287689357995987,-0.015997285023331642,-0.00667712464928627,0.07897906750440598,-0.04919974505901337,-0.003141918918117881,-0.07471760362386703,0.02448076568543911,0.0642470121383667,0.15407413244247437,0.03425905480980873,0.02205507829785347,-0.065525583922863,0.025147758424282074,0.019963502883911133,-0.04389538988471031,-0.016846708953380585,-0.059107132256031036,0.05197447910904884,0.008587376214563847,-0.04440482333302498,0.014231313019990921,0.014033045619726181,-0.026674706488847733,0.0060599930584430695,-0.09281846135854721,-0.04953370988368988,-0.06804559379816055,-2.180873730587466e-33,0.07883308082818985,-0.05139454826712608,0.014377826824784279,0.04326614364981651,0.00918753445148468,0.037953950464725494,0.036252621561288834,-0.05987409129738808,-0.02040986344218254,0.03971553221344948,0.022738151252269745,0.027586957439780235,-0.01790367253124714,-0.011856978759169579,0.09893236309289932,-0.0015618875622749329,-0.021423935890197754,-0.024310696870088577,-0.04168100655078888,0.02311144396662712,-0.08505942672491074,0.07597392052412033,0.01752288080751896,0.07677048444747925,0.03451550751924515,-0.06625059992074966,0.0574084036052227,0.03060518018901348,0.0009009772329591215,0.014486136846244335,0.09382159262895584,0.08378048986196518,0.01475887093693018,0.021983874961733818,-0.0492737703025341,-0.06426306813955307,-0.001322598080150783,-0.03349556773900986,-0.031399987637996674,-0.004053597338497639,0.024730259552598,0.023903554305434227,-0.020717088133096695,0.030894339084625244,-0.01678534969687462,0.011255187913775444,0.09431122243404388,0.01840963028371334,0.0008887263829819858,0.07799267768859863,-0.03653576597571373,0.04860599339008331,0.04116189852356911,-0.08484227955341339,0.014850785955786705,-0.021569805219769478,0.04051483795046806,0.021289292722940445,-0.037528906017541885,0.05352358520030975,0.05853944644331932,0.09763883799314499,-0.008480530232191086,-0.06590452045202255,0.016570845618844032,-0.04083491861820221,0.018672576174139977,0.002684458391740918,0.04519599676132202,-0.10510894656181335,-0.04777590557932854,-0.022215837612748146,0.12571221590042114,-0.02190415933728218,0.02566148340702057,-0.04748524725437164,-0.020919229835271835,-0.030016010627150536,-0.044568661600351334,-0.03694549575448036,0.013665623962879181,-0.07611770927906036,0.0881175845861435,0.0714225172996521,0.017864836379885674,0.031236525624990463,-0.01507990900427103,-0.012998622842133045,0.016975482925772667,-0.06161997467279434,-0.03308604285120964,-0.05013130605220795,0.015764353796839714,-0.02268732339143753,-0.08359476178884506,2.212210573270465e-33,0.018697254359722137,0.02431647852063179,-0.01644298993051052,0.14554527401924133,0.041719816625118256,-0.04237065464258194,0.04135541990399361,0.06283426284790039,0.026717182248830795,0.043700866401195526,0.11377974599599838,0.051791660487651825,0.022186731919646263,0.02147163264453411,0.11055156588554382,0.05889763683080673,0.07212797552347183,0.0371415801346302,-0.009511091746389866,0.03028349205851555,-0.000369536253856495,-0.08168009668588638,0.04637708142399788,-0.018269848078489304,-0.06578805297613144,0.048383623361587524,0.00012404857261572033,0.027145318686962128,-0.11393152177333832,-0.010248003527522087,0.01853959821164608,0.06895589828491211,-0.04780970513820648,0.028872422873973846,0.03363235667347908,0.015423983335494995,-0.0070467679761350155,-0.03114924021065235,0.013367042876780033,-0.004414386115968227,-0.0024259767960757017,-0.05174824595451355,0.021117793396115303,0.036646660417318344,-0.0217916127294302,-0.050286561250686646,-0.08619266003370285,0.07234630733728409,-0.03314356505870819,-0.014929558150470257,-0.07472454011440277,0.06251945346593857,-0.0415327325463295,0.00394900469109416,0.026792876422405243,-0.09261096268892288,-0.07109265774488449,0.06575711071491241,0.0028450158424675465,0.07586848735809326,0.022529656067490578,0.09004957973957062,0.02129010669887066,0.012345569208264351,-0.02827710472047329,0.07576290518045425,-0.055053435266017914,-0.07334621995687485,-0.04778268188238144,0.01657307706773281,0.008326070383191109,-0.06871193647384644,0.03295362740755081,0.01797647215425968,-0.07337714731693268,-0.10550818592309952,-0.03869740292429924,-0.03170647844672203,-0.0486094132065773,0.038278672844171524,0.019354568794369698,-0.025346415117383003,0.022341538220643997,0.04753730818629265,-0.02204151079058647,0.0692225992679596,-0.04331257939338684,0.06381325423717499,0.0187092125415802,-0.11334967613220215,0.03614235296845436,0.05254010483622551,0.07100647687911987,0.07165152579545975,-0.06701663136482239,-1.2132692184252392e-8,0.007717740722000599,-0.03561461344361305,0.00015020112914498895,0.0072401766665279865,0.014873992651700974,-0.0305094625800848,-0.05939987674355507,-0.0020865960977971554,0.0539373978972435,0.02870129980146885,-0.022869134321808815,-0.04728759825229645,0.008534654043614864,0.08695261925458908,-0.01656063087284565,0.018020784482359886,-0.060409728437662125,-0.03522305190563202,-0.04137573391199112,-0.022350914776325226,-0.021173210814595222,-0.05388138070702553,0.005572017282247543,0.0862647071480751,0.016254251822829247,-0.053508467972278595,-0.020445847883820534,-0.0038195333909243345,0.060203973203897476,0.10810321569442749,-0.009091736748814583,0.035698216408491135,-0.054150279611349106,-0.016994066536426544,-0.06726823002099991,-0.05203303322196007,0.0010810930980369449,0.02372349612414837,0.01943405531346798,-0.04649607837200165,-0.01809755526483059,-0.0852915495634079,0.05332690104842186,0.004954841919243336,0.06766413897275925,-0.13181953132152557,0.001030897255986929,0.06427976489067078,-0.07805205881595612,-0.030995246022939682,-0.01076279953122139,-0.012843769043684006,0.027499128133058548,0.026431648060679436,0.046675510704517365,-0.09520640969276428,-0.007419647183269262,0.0749640092253685,0.01129545271396637,0.06476272642612457,-0.02126341126859188,-0.020570646971464157,-0.05507447198033333,-0.03321527689695358],"k":10,"num_candidates":100},"_source":["title","category"]}

Opensearch

Vector


{"query"{"knn":{"embedding":{"vector":[0.1,0.2,0.3],"k":10}}}}

Hybrid

PUT /_search/pipeline/nlp-search-pipeline
{"description":"Post processor for hybrid search","phase_results_processors":[{"normalization-processor"{"normalization":{"technique":"min_max"},"combination":{"technique":"arithmetic_mean","parameters":{"weights":[0.5,0.5]}}}}]}
GET <index_name>/_search?search_pipeline=nlp-search-pipeline
{"query"{"hybrid":{"queries":[{"match":{"passage_text":{"query":"blue pants"}}},{"knn":{"embedding":{"vector":[0.1,0.2,0.3],"k":5}}}]}}}

vector with filter

{"query"{"knn":{"vector_field_name":{"vector":[],"k":20,"filter":{"bool":{"must":[{"term":{"pincode":"405050"}}]}}}}}}

This article discusses the potential of Lucene in winning the vector database race, highlighting its hybrid solutions, vast installed base, and how it complements ChatGPT in solving information retrieval problems. It details the implementation process, including creating an index, ingesting data, and searching the index. Further, it explores hybrid search in OpenSearch, combining keyword and vector search, and demonstrates how to execute a hybrid search with a post-processing pipeline for optimal results.

Elasticsearch

vector

{
  "query": {
    "script_score": {
      "query": {
        "match_all": {}
      },
      "script": {
        "source": "cosineSimilarity(params.query_vector, 'your_vector_field') + 1.0",
        "params": {
          "query_vector": [/* your query vector here */]
        }
      }
    }
  }
}

Hybrid

{
  "query": {
    "bool": {
      "must": {
        "multi_match": {
          "query": "your search text",
          "fields": ["field1", "field2"]
        }
      },
      "should": {
        "script_score": {
          "query": {
            "match_all": {}
          },
          "script": {
            "source": "cosineSimilarity(params.query_vector, 'your_vector_field') + 1.0",
            "params": {
              "query_vector": [/* your query vector here */]
            }
          }
        }
      }
    }
  }
}

Vector with filter

{
  "query": {
    "bool": {
      "must": {
        "script_score": {
          "query": {
            "match_all": {}
          },
          "script": {
            "source": "cosineSimilarity(params.query_vector, 'your_vector_field') + 1.0",
            "params": {
              "query_vector": [/* your vector here */]
            }
          }
        }
      },
      "filter": {
        "term": {
          "your_filter_field": "your_filter_value"
        }
      }
    }
  }
}

Tools used