ElasticSearch を使ってみる。
【ドッカーネットワーク作成】
説明:ユーザー定義ネットワークを作成します (同じネットワークに接続されている他のサービス (例: Kibana) に接続する場合に便利です):
docker network create somenetwork
【コンテナ起動】
docker run -d –name elasticsearch –net somenetwork -p 9200:9200 -p 9300:9300\
-e “discovery.type=single-node” elasticsearch:8.16.1
※ xpack.security.enabled=false”があるとhttpで接続できます。
docker run -d –name elasticsearch –net somenetwork -p 9200:9200 -p 9300:9300\
-e “discovery.type=single-node” -e “xpack.security.enabled=false” elasticsearch:8.16.1
ネットワークを作成してコンテナを起動する。
docker network create somenetwork
docker run -d --name elasticsearch --net somenetwork -p 9200:9200 -p 9300:9300\
-e "discovery.type=single-node" -e "xpack.security.enabled=false" elasticsearch:8.16.1
検索をしてみる。エラーになった。
curl -X GET 'localhost:9200/categories?pretty'
$ curl -X GET 'localhost:9200/categories?pretty'
curl: (56) Recv failure: 接続が相手からリセットされました
カテゴリーを作ってみる。
curl -X PUT 'localhost:9200/categories?pretty'
$ curl -X PUT 'localhost:9200/categories?pretty'
{
"acknowledged" : true,
"shards_acknowledged" : true,
"index" : "categories"
}
検索をしてみる。
curl -X GET 'localhost:9200/categories?pretty'
$ curl -X GET 'localhost:9200/categories?pretty'
{
"categories" : {
"aliases" : { },
"mappings" : { },
"settings" : {
"index" : {
"routing" : {
"allocation" : {
"include" : {
"_tier_preference" : "data_content"
}
}
},
"number_of_shards" : "1",
"provided_name" : "categories",
"creation_date" : "1735803653945",
"number_of_replicas" : "1",
"uuid" : "6srdtTtHR26MWJH3wm0l2g",
"version" : {
"created" : "8518000"
}
}
}
}
}
よし、いけそう。
256次元のインデックスを作成してみます。
curl -X PUT 'localhost:9200/categories2?pretty' -H 'Content-Type:application/json' -d '{
"mappings": {
"properties": {
"my_vector": {
"type": "dense_vector",
"dims": 256 // ベクトルの次元数(例: 256次元)
},
"name": {
"type": "text"
}
}
}
}'
$ curl -X PUT 'localhost:9200/categories2?pretty' -H 'Content-Type:application/json' -d '{
"mappings": {
"properties": {
"my_vector": {
"type": "dense_vector",
"dims": 256 // ベクトルの次元数(例: 256次元)
},
"name": {
"type": "text"
}
}
}
}'
{
"acknowledged" : true,
"shards_acknowledged" : true,
"index" : "categories2"
}
データの投入します。
curl -X POST 'localhost:9200/categories2/_doc/1?pretty' -H 'Content-Type:application/json' -d '{
"my_vector":[-0.09343869984149933,0.022960364818572998,0.031146233901381493,0.09823042899370193,0.08385524153709412,-0.053906943649053574,-0.0015286111738532782,-0.029548989608883858,-0.022561052814126015,0.042726244777441025,0.011480182409286499,-0.0966331884264946,0.07626833766698837,0.01836829073727131,0.08744903653860092,0.013876046054065228,-0.013277079910039902,0.019965535029768944,0.030547266826033592,0.09383801370859146,0.008685007691383362,0.005914789624512196,0.08385524153709412,-0.029149679467082024,-0.049913834780454636,-0.12218906730413437,0.019965535029768944,-0.04033038020133972,-0.002358428668230772,-0.0682821273803711,0.02815140224993229,-0.005041297525167465,0.060295913368463516,-0.019466396421194077,0.004342503845691681,0.060295913368463516,0.0035937961656600237,-0.03833382576704025,-0.02186225913465023,0.06069522351026535,0.0778655856847763,-0.04911521449685097,-0.005141125060617924,0.10861250758171082,0.14295321702957153,0.041528310626745224,0.01896725781261921,0.06069522351026535,0.10461939871311188,0.05989660322666168,0.021762432530522346,0.036137618124485016,-0.06269177794456482,0.11739733815193176,0.014774494804441929,0.0742717832326889,-0.022860536351799965,0.08824766427278519,-0.05430625379085541,-0.09982766956090927,-0.05869866907596588,0.015972428023815155,0.0022211656905710697,0.021762432530522346,0.09343869984149933,0.021063638851046562,-0.016172083094716072,0.06628557294607162,-0.04691900685429573,-0.07826489210128784,-0.0754697173833847,-0.009982767514884472,-0.011430268175899982,-0.0011542574502527714,-0.031146233901381493,-0.040929343551397324,-0.03254381939768791,0.05630280449986458,0.01337690744549036,-0.005191038828343153,-0.02615484967827797,-0.023160019889473915,-0.0966331884264946,-0.015073978342115879,0.10861250758171082,-0.051111768931150436,0.1413559764623642,0.05670211836695671,0.05790004879236221,-0.036337271332740784,0.02675381489098072,0.060295913368463516,0.06788281351327896,0.014475012198090553,-0.0022211656905710697,0.010481905192136765,-0.051910389214754105,-0.08744903653860092,-0.06588625907897949,-0.006438884884119034,0.1437518447637558,0.04192762076854706,0.10541801899671555,-0.10621663928031921,0.08505317568778992,0.10302215814590454,-0.05869866907596588,0.09982766956090927,-0.026554159820079803,-0.07906351238489151,-0.02186225913465023,0.03533899411559105,-0.08944559097290039,-0.08864697068929672,-0.001759462640620768,-0.029548989608883858,0.153335303068161,-0.012678113766014576,-0.009683283977210522,-0.006339056883007288,0.021363122388720512,-0.1285780370235443,-0.06508763879537582,-0.07107730209827423,0.024258123710751534,-0.10461939871311188,-0.042726244777441025,0.0495145246386528,-0.014475012198090553,-0.018767602741718292,0.025555884465575218,0.07267454266548157,0.02186225913465023,-0.019965535029768944,0.04112900048494339,-0.08066076040267944,-0.1189945861697197,0.023160019889473915,0.04033038020133972,-0.07107730209827423,0.041528310626745224,0.047318316996097565,0.03474003076553345,0.06468833237886429,0.0247572623193264,-0.10102560371160507,-0.028351059183478355,-0.03374175354838371,-0.003219442442059517,0.05630280449986458,0.02875036932528019,0.0966331884264946,0.010781388729810715,0.013277079910039902,-0.07107730209827423,-0.044722795486450195,-0.009833025746047497,-0.005515479017049074,-0.002620476298034191,-0.03673658147454262,0.055104874074459076,0.0008859705994836986,0.006588626187294722,0.024557607248425484,0.02735278196632862,0.009283972904086113,0.04372451826930046,0.1309739053249359,-0.039531756192445755,0.05630280449986458,-0.02126329392194748,0.05151107907295227,0.02735278196632862,0.17889118194580078,0.017370015382766724,0.011480182409286499,0.017170358449220657,0.005839918740093708,0.04252658784389496,-0.00848535168915987,-0.1002269834280014,0.03314278647303581,0.021363122388720512,-0.011580009944736958,0.04372451826930046,0.030547266826033592,-0.09184145927429199,-0.11020974814891815,0.07387247681617737,0.10541801899671555,0.07387247681617737,0.022660881280899048,-0.051910389214754105,-0.08625110983848572,-0.011679837480187416,0.05989660322666168,-0.003394140861928463,0.027552437037229538,0.022061916068196297,-0.04352486506104469,0.023359674960374832,-0.11020974814891815,0.07586903125047684,0.0030322654638439417,0.012977597303688526,-0.010182422585785389,-0.005590349435806274,0.049913834780454636,-0.05470556393265724,0.08385524153709412,-0.019166912883520126,0.12937666475772858,0.03394140675663948,0.04312555491924286,-0.07946282625198364,-0.017769325524568558,0.025955194607377052,0.06388971209526062,0.08704973012208939,0.028351059183478355,0.055104874074459076,0.08425455540418625,0.04751797020435333,-0.09264007955789566,0.07586903125047684,0.03873313590884209,0.09463663399219513,0.13736286759376526,0.05430625379085541,0.10142491012811661,-0.05869866907596588,0.07986214011907578,-0.07906351238489151,0.06189315393567085,-0.08225800096988678,0.018867429345846176,0.060295913368463516,-0.041528310626745224,0.013975873589515686,-0.09703249484300613,-0.08225800096988678,-0.10102560371160507,-0.10861250758171082,-0.03793451562523842,-0.05989660322666168,-0.006314100231975317,0.11500147730112076,0.03274347633123398,-0.012278803624212742,-0.1613215208053589,-0.06149384379386902,-0.03873313590884209,-0.0010856259614229202,0.03573830425739288,0.09703249484300613,0.013077424839138985],
"name": "ゴルフ"
}'
curl -X POST 'localhost:9200/categories2/_doc/2?pretty' -H 'Content-Type:application/json' -d '{
"my_vector":[-0.07613293826580048,0.00701224384829402,0.09737001359462738,0.0054595330730080605,0.1739036589860916,-0.027447925880551338,-0.013423438183963299,-0.10338050872087479,-0.14745748043060303,-0.05108920484781265,-0.07252664119005203,0.06731754541397095,0.0789378359913826,-0.06972174346446991,0.06090634688735008,0.034860871732234955,0.05810144916176796,0.001264708349481225,0.05730004981160164,0.0617077462375164,-0.034259822219610214,0.011419940739870071,-0.0067618065513670444,-0.04808395728468895,-0.03325807303190231,-0.01903323456645012,0.046080462634563446,-0.06731754541397095,0.004633089993149042,0.011470028199255466,-0.045880112797021866,0.023541104048490524,0.0597042478621006,0.025143902748823166,-0.01081889122724533,0.0404706671833992,0.16669106483459473,0.074930839240551,0.035662271082401276,-0.01893305964767933,-0.035662271082401276,-0.09737001359462738,-0.0034810781944543123,0.00691206892952323,-0.0006010495126247406,0.07132454216480255,0.1234154924750328,0.05689935013651848,0.07853713631629944,-0.053693752735853195,0.0577007494866848,0.05169025436043739,-0.0016528860433027148,-0.011670378036797047,-0.023440930992364883,0.023541104048490524,0.011019241064786911,0.0040320404805243015,0.02804897539317608,-0.06731754541397095,-0.16428686678409576,0.05890284851193428,-0.0829448327422142,-0.10177771002054214,-0.06010494753718376,-0.044878363609313965,-0.06010494753718376,-0.01993480883538723,-0.023941803723573685,-0.017430435866117477,-0.06811894476413727,0.01983463391661644,0.044076964259147644,0.11460009962320328,0.03305772319436073,-0.0044577838853001595,0.08655112981796265,0.05128955468535423,0.04207346588373184,-0.04307521507143974,-0.045880112797021866,0.05649865046143532,0.010368104092776775,-0.1578756719827652,0.045880112797021866,-0.07813643664121628,-0.08935602754354477,0.06090634688735008,-0.1154014989733696,-0.09176022559404373,-0.010267929174005985,0.12421689182519913,-0.08735252916812897,0.044076964259147644,0.07573223859071732,0.0049837022088468075,-0.06050564721226692,0.06932104378938675,0.012622038833796978,-0.12581969797611237,-0.04928605630993843,0.031054222956299782,0.03966926783323288,0.013323263265192509,0.12581969797611237,0.02925107441842556,0.04788360744714737,0.06731754541397095,-0.0414724163711071,0.0298521239310503,0.007813643664121628,0.04027031734585762,-0.03666402027010918,-0.13944348692893982,-0.05108920484781265,-0.01883288472890854,0.017831135541200638,0.000525918323546648,0.0005165269249118865,-0.0769343376159668,-0.0308538731187582,-0.10738750547170639,-0.08534903079271317,-0.044878363609313965,0.09135952591896057,-0.005008745938539505,-0.034059472382068634,-0.09015742689371109,0.03305772319436073,0.0869518294930458,0.10338050872087479,0.08815392851829529,0.008314518257975578,-9.39139790716581e-5,-0.08735252916812897,-0.0869518294930458,0.016428686678409576,0.12982669472694397,-0.03205597400665283,-0.09456511586904526,0.06050564721226692,0.10738750547170639,0.09296232461929321,0.027447925880551338,0.02103673294186592,-0.04748290777206421,0.04067101702094078,0.14345048367977142,0.05850214883685112,0.04828430712223053,-0.03325807303190231,-0.05068850517272949,0.053693752735853195,0.09376372396945953,0.011269678361713886,-0.031054222956299782,0.03826681897044182,-0.03826681897044182,0.034059472382068634,-0.09536651521921158,0.10498330742120743,0.001101924106478691,-0.018031485378742218,0.11460009962320328,-0.07252664119005203,-0.052892353385686874,-0.011219590902328491,0.03666402027010918,-0.07773573696613312,-0.10418190807104111,0.0789378359913826,0.012521863915026188,-0.011119415983557701,-0.01472571212798357,-0.05930354818701744,0.05810144916176796,0.024342503398656845,0.04968675598502159,0.03966926783323288,0.017029736191034317,0.007913818582892418,0.0007638336974196136,-0.06451264768838882,-0.03005247376859188,0.03806646913290024,-0.07973923534154892,-0.02965177409350872,-0.053293053060770035,-0.045479413121938705,-0.0192335844039917,0.08134203404188156,-0.024943552911281586,0.06090634688735008,-0.021838132292032242,0.05088885501027107,0.0028299414552748203,-0.006661631632596254,-0.0597042478621006,0.012471776455640793,-0.03766576945781708,-0.03025282360613346,0.015727462247014046,-0.02163778245449066,-0.008464780636131763,-0.08775322884321213,0.10818890482187271,-0.0617077462375164,-0.008815392851829529,-0.011520115658640862,0.04828430712223053,0.026446176692843437,-0.03305772319436073,-0.04307521507143974,-0.08174273371696472,-0.03986961767077446,-0.04748290777206421,0.06531404703855515,0.013423438183963299,-0.10257910937070847,0.03225632384419441,-0.0577007494866848,-0.08214343339204788,0.01422483753412962,0.03986961767077446,-0.02905072458088398,0.07853713631629944,-0.08013993501663208,0.05810144916176796,0.0657147467136383,0.05048815533518791,-0.022339006885886192,-0.0298521239310503,0.002216370077803731,0.017831135541200638,-0.02844967506825924,-0.013323263265192509,-0.054895851761102676,-0.03225632384419441,0.01382413785904646,-0.09176022559404373,0.00731276860460639,-0.035261571407318115,-0.034860871732234955,0.07533153891563416,0.024442678317427635,-0.01412466261535883,-0.08855462819337845,0.12501829862594604,0.0617077462375164,-0.13944348692893982,0.027247576043009758,0.05529655143618584,-0.03986961767077446,0.12421689182519913,-0.01983463391661644,-0.0008577476837672293],
"name": "旅行"
}'
大量にデータの投入します。
curl -X POST 'localhost:9200/categories2/_doc/0?pretty' -H 'Content-Type:application/json' -d '{
"name": "ネットワークオーディオプレイヤー",
"my_vector":[-0.09115928411483765,-0.0442773662507534,0.029301200062036514,-0.12697187066078186,0.12176275998353958,-0.07357856631278992,0.04199838638305664,-0.02165033109486103,0.08985701203346252,-0.07129958271980286,-0.04655634984374046,0.002726639388129115,0.04395179823040962,-0.05664898455142975,0.052416589111089706,-0.02295260690152645,-0.05274215713143349,-0.03402194753289223,0.1100422814488411,0.0459052138030529,-0.01985970139503479,-0.02165033109486103,0.06869503110647202,0.07520641386508942,-0.07846210151910782,-0.08920587599277496,0.10613545775413513,-0.05371886491775513,0.03467308729887009,-0.051114313304424286,0.08660132437944412,0.05990467593073845,-0.01920856349170208,-0.05827682837843895,0.051114313304424286,0.20055043697357178,0.05925353616476059,0.04720748960971832,0.016197051852941513,-0.01131351850926876,0.047858625650405884,0.05957910418510437,-0.0008902273839339614,0.13739006221294403,-0.08725246042013168,-0.03955661877989769,-0.032394103705883026,0.1230650395154953,0.05632341653108597,-0.0950661152601242,0.048509761691093445,0.0739041343331337,-0.0459052138030529,0.008383398875594139,-0.00944149773567915,0.05502114072442055,-0.050463177263736725,0.05860240012407303,-0.02083640918135643,-0.09832180291414261,-0.08660132437944412,0.0017804547678679228,-0.020429447293281555,0.0885547325015068,0.09571725130081177,-0.09115928411483765,0.0015566261718049645,0.05795126035809517,-0.05860240012407303,0.07292743027210236,-0.00480214087292552,0.01725514978170395,-0.004334135912358761,0.03971940279006958,-0.027510570362210274,0.033533595502376556,0.032556887716054916,0.1458548605442047,0.09897293895483017,0.0010326637420803308,0.07357856631278992,0.052416589111089706,-0.05697455257177353,0.0885547325015068,-0.015057560987770557,-0.048835333436727524,0.005738151725381613,0.04053332656621933,0.08171778917312622,0.10353090614080429,-0.04085889458656311,0.0328824557363987,-0.06413707137107849,0.06283479183912277,0.031580179929733276,-0.04118446260690689,-0.0459052138030529,-0.04134724661707878,-0.1198093518614769,0.030115121975541115,0.049486469477415085,0.04720748960971832,0.02197589911520481,-0.07455527037382126,-0.02083640918135643,0.05274215713143349,-0.029463984072208405,-0.016604013741016388,0.0035609095357358456,-0.03516143932938576,-0.023929312825202942,0.00879035983234644,-0.030440689995884895,-0.030440689995884895,0.001800802885554731,-0.031091827899217606,0.0690205991268158,0.050788745284080505,0.050137609243392944,-0.04199838638305664,0.048835333436727524,-0.09115928411483765,-0.10027521848678589,0.0021467197220772505,0.048184193670749664,0.07195072621107101,0.0023807224351912737,-0.07292743027210236,0.025557156652212143,0.05827682837843895,-0.07618311792612076,0.03760320693254471,0.10678659379482269,0.0706484466791153,0.019289955496788025,0.03971940279006958,-0.06771832704544067,0.007854348979890347,-0.053067728877067566,-0.04199838638305664,-0.04004497081041336,-0.03923105075955391,0.09311269968748093,0.11525138467550278,0.04037054255604744,0.004903881344944239,-0.03760320693254471,0.10613545775413513,0.07455527037382126,-0.03385916352272034,0.009807762689888477,-0.012859971262514591,-0.08985701203346252,-0.02360374480485916,-0.09571725130081177,0.010336811654269695,0.014813384041190147,0.04118446260690689,0.05892796814441681,0.01839464157819748,-0.007528780493885279,0.0029708161018788815,0.08920587599277496,0.09897293895483017,0.04134724661707878,0.0033574290573596954,0.013429716229438782,-0.01839464157819748,-0.07292743027210236,-0.003011512104421854,0.004008566960692406,-0.009889154694974422,0.008627574890851974,-0.06869503110647202,-0.13348324596881866,-0.08008994162082672,0.13739006221294403,0.09832180291414261,0.08464790880680084,0.003967870958149433,0.09441497921943665,-0.017987681552767754,-0.13543665409088135,0.005412582773715258,0.002808031626045704,-0.03695206716656685,-0.024906018748879433,-0.012046048417687416,-0.005148057825863361,-0.03385916352272034,0.006836946588009596,-0.10743772983551025,-0.0188829954713583,0.016034267842769623,-0.07781096547842026,0.004944577347487211,-0.030603474006056786,-0.06348593533039093,0.05827682837843895,-0.10157749056816101,0.04232395440340042,-0.06478820741176605,-0.03369637951254845,-0.1758071929216385,0.003011512104421854,0.051439885050058365,-0.05371886491775513,0.08399677276611328,0.0673927590250969,0.10939114540815353,-0.017173757776618004,-0.007447388023138046,0.0459052138030529,0.007732260972261429,-0.028487276285886765,-0.013836677186191082,0.15562193095684052,-0.04004497081041336,-0.033208027482032776,-0.015464521944522858,-0.0475330576300621,0.1705980896949768,0.030929043889045715,-0.10743772983551025,0.0180690735578537,0.0016990626463666558,0.10939114540815353,0.06316035985946655,0.04053332656621933,0.05957910418510437,0.030277905985713005,0.003194644581526518,-0.0007172689656727016,-0.003906826488673687,0.08106665313243866,-0.013755285181105137,-0.03971940279006958,0.05632341653108597,0.005534670781344175,-0.053393296897411346,0.032556887716054916,0.07129958271980286,0.015138952992856503,-0.0008698793826624751,-0.0442773662507534,0.0852990448474884,-0.026371078565716743,0.008098525926470757,0.053067728877067566,-0.05860240012407303,0.006836946588009596,-0.0918104276061058,-0.06283479183912277,-0.03890548273921013,-0.08790359646081924,0.013348324224352837]
}'
curl -X POST 'localhost:9200/categories2/_doc/1?pretty' -H 'Content-Type:application/json' -d '{
"name": "スーツ・フォーマル・ドレス",
"my_vector":[-0.10017876327037811,0.0039053275249898434,0.04376496374607086,0.011826659552752972,-0.012585589662194252,-0.060967378318309784,0.00654577137902379,0.0050911554135382175,0.15178599953651428,-0.044017940759658813,0.02871285192668438,-0.03693459555506706,-0.03769352287054062,-0.05742570385336876,-0.006798748392611742,0.11383950710296631,-0.06273821741342545,0.02744796872138977,-0.044017940759658813,0.09613113850355148,0.0283333882689476,0.11485140770673752,0.016822949051856995,0.018087832257151604,-0.007779032923281193,0.17303603887557983,-0.00014032299804966897,-0.10776806622743607,0.005059533286839724,-0.0629911944270134,0.10523829609155655,0.06071440130472183,-0.0703275129199028,-0.0488244965672493,0.0246652252972126,0.027700945734977722,-0.035669710487127304,0.0834823027253151,-0.03769352287054062,0.029471782967448235,0.10776806622743607,0.1558336317539215,0.0001413111895089969,0.12142880260944366,0.10675615817308426,0.027321480214595795,0.07538704574108124,0.032254524528980255,0.07994063198566437,0.06880965828895569,-0.013534252531826496,0.05869058892130852,-0.0703275129199028,0.051354266703128815,0.06273821741342545,-0.007051724940538406,-0.03693459555506706,-0.12294666469097137,0.11687522381544113,-0.03212803602218628,-0.010308799333870411,-0.0074944342486560345,0.0212500412017107,0.02403278462588787,-0.05034235864877701,0.0566667765378952,-0.005755219142884016,0.03693459555506706,-0.0561608225107193,0.05034235864877701,-0.09309541434049606,-0.01157368253916502,0.0640031024813652,0.06324417144060135,-0.11586331576108932,0.09461327642202377,-0.07639895379543304,-0.030989643186330795,0.022388435900211334,-0.023020876571536064,0.04806556925177574,0.024285761639475822,0.05034235864877701,0.10928592085838318,0.14470265805721283,0.03263399004936218,-0.031622085720300674,0.0034309960901737213,-0.0022451679687947035,-0.04781259223818779,0.06476202607154846,0.04654770717024803,-0.00954986922442913,0.09258946031332016,0.10675615817308426,-0.11738117784261703,-0.062485240399837494,-0.025044690817594528,0.07336323708295822,-0.02403278462588787,-0.1527979075908661,-0.06197928637266159,0.0834823027253151,0.032886967062950134,0.14267884194850922,0.08044658601284027,0.021503018215298653,0.13458359241485596,0.0561608225107193,-0.02403278462588787,0.03389887511730194,0.03174857422709465,-0.07133942097425461,-0.09714304655790329,-0.0005494336946867406,-0.07741086184978485,0.06476202607154846,0.006767126265913248,0.08651801943778992,-0.05793165788054466,-0.054389987140893936,-0.043006036430597305,0.012965054251253605,0.17505985498428345,0.03364589810371399,-0.030357200652360916,0.0069252364337444305,-0.06197928637266159,-0.018087832257151604,0.05388403311371803,0.07690490782260895,0.040223293006420135,0.1538098156452179,-0.03693459555506706,-0.0561608225107193,-0.07589299976825714,-0.044017940759658813,0.06147333234548569,-0.0032412635628134012,0.09461327642202377,0.13863122463226318,0.09663709253072739,-0.05388403311371803,-0.04376496374607086,0.01947920396924019,0.010561776347458363,-0.012838566675782204,0.040223293006420135,-0.021503018215298653,0.06779775023460388,0.06526798009872437,0.09410732239484787,-0.026056597009301186,0.049836404621601105,0.018593786284327507,-0.0036997839342802763,0.0703275129199028,0.028459876775741577,-0.027700945734977722,0.08955374360084534,0.04604175314307213,0.0018577974988147616,-0.0212500412017107,0.07791681587696075,-0.005059533286839724,-0.02226194739341736,0.012712078168988228,-0.015178600326180458,-0.09714304655790329,0.05489593744277954,0.08145848661661148,-0.0007865993538871408,-0.011320706456899643,0.029977736994624138,0.07133942097425461,-0.12497048079967499,0.04376496374607086,0.021503018215298653,0.0017313091084361076,-0.04730663821101189,0.020238133147358894,0.10827402025461197,-0.040223293006420135,0.07133942097425461,-0.045788779854774475,-0.039970315992832184,0.003051531035453081,-0.030989643186330795,0.009043916128575802,-0.003035720204934478,0.09562518447637558,-0.024538736790418625,-0.020238133147358894,0.07538704574108124,-0.047053661197423935,0.05641379952430725,0.08955374360084534,0.10574425011873245,0.025677133351564407,0.018087832257151604,-0.03238101303577423,0.012965054251253605,-0.04376496374607086,-0.05514891445636749,0.006893614307045937,0.0006680165533907712,0.06729179620742798,0.01846729777753353,0.03794649988412857,-0.027953922748565674,0.03415185213088989,-0.042753059417009354,0.0640031024813652,0.0283333882689476,0.12446452677249908,-0.004648446571081877,0.040223293006420135,-0.025044690817594528,-0.009170404635369778,-0.09663709253072739,-0.06880965828895569,0.049836404621601105,0.03895840793848038,0.006767126265913248,-0.06425607204437256,-0.015811042860150337,0.047053661197423935,0.019985157996416092,0.00800038781017065,0.044270917773246765,0.007873899303376675,0.07386919111013412,0.0419941283762455,0.05869058892130852,0.031622085720300674,0.02162950485944748,-0.025044690817594528,-0.010498532094061375,0.00879093911498785,-0.0708334669470787,-0.03693459555506706,0.010688264854252338,-0.06046142429113388,0.05388403311371803,-0.04604175314307213,-0.04477687180042267,-0.00019269707263447344,-0.08904778957366943,-0.09157755970954895,-0.12244071066379547,-0.01846729777753353,-0.017328903079032898,-0.0425000824034214,-0.0069884806871414185,0.04806556925177574,0.002766932360827923]
}'
curl -X POST 'localhost:9200/categories2/_doc/2?pretty' -H 'Content-Type:application/json' -d '{
"name": "キッチンタイマー",
"my_vector":[-0.13178442418575287,0.17141883075237274,-0.014986761845648289,0.01659690961241722,-0.09066371619701385,0.03294610604643822,0.1803365796804428,-0.009289314970374107,-0.027496373280882835,-0.08917742967605591,-0.02130349725484848,-0.059451617300510406,0.048799868673086166,0.04260699450969696,0.0931408703327179,0.027000943198800087,0.016101479530334473,-0.05846075713634491,-0.007772060576826334,-0.0026474548503756523,-0.06886479258537292,-0.019197918474674225,0.006316734477877617,-0.15952850878238678,-0.06391049176454544,-0.10106775164604187,-0.08521398901939392,-0.06440591812133789,-0.05846075713634491,-0.08521398901939392,0.04211156442761421,0.023285217583179474,-0.04557957500219345,0.00829845480620861,0.07035107910633087,0.036414116621017456,0.041616134345531464,0.04780900850892067,0.01833091489970684,-0.07530537992715836,0.022046642377972603,0.06440591812133789,-0.0032822247594594955,-0.007090844213962555,-0.057717613875865936,-0.07381909340620041,-0.04260699450969696,0.07926882803440094,0.011642608791589737,0.1084992066025734,0.12435296922922134,-0.1075083464384079,-0.11791237443685532,0.024028362706303596,-0.09413173049688339,0.05251559615135193,-0.11692151427268982,0.10156317800283432,0.03740497678518295,0.016720768064260483,0.08125054836273193,0.06985565274953842,0.048799868673086166,-0.03963441401720047,0.03666182979941368,-0.004520799964666367,-0.14763818681240082,0.03666182979941368,0.04557957500219345,0.1075083464384079,0.017340054735541344,-0.006038054823875427,0.11543522775173187,0.0921500101685524,-0.02539079450070858,-0.00133146857842803,0.009289314970374107,-0.026257798075675964,-0.03666182979941368,0.017340054735541344,-0.05003844574093819,-0.04657043516635895,-0.04136841744184494,-0.02650551311671734,0.06985565274953842,-0.04954301565885544,0.08125054836273193,0.035175539553165436,0.044093284755945206,-0.038148120045661926,0.016225337982177734,0.027000943198800087,0.02477150782942772,0.012571539729833603,0.014553260989487171,-0.14466559886932373,-0.028858806937932968,-0.03765268996357918,-0.021427353844046593,-0.10949006676673889,0.003886030288413167,-0.010342104360461235,0.023285217583179474,0.05177244916558266,0.03468010947108269,0.0388912670314312,-0.007369523402303457,0.06936021894216537,-0.05672675371170044,-0.01065174862742424,0.07035107910633087,0.04731357842683792,-0.012199967168271542,-0.042854707688093185,0.01009438931941986,-0.07183737307786942,0.015729907900094986,0.07728710025548935,-0.02130349725484848,0.04483642801642418,-0.001888827420771122,-0.028239518404006958,0.03368924930691719,0.009413172490894794,0.11791237443685532,-0.019941063597798347,0.044588714838027954,-0.0901682898402214,-0.05449731647968292,-0.03294610604643822,-0.02724865823984146,-0.08967285603284836,0.03368924930691719,0.008112668991088867,-0.08521398901939392,-0.08917742967605591,0.005511660594493151,0.10255403816699982,-0.08174597471952438,-0.006750235799700022,0.10503119230270386,0.12980270385742188,-0.0194456335157156,-0.04359785467386246,0.0787733942270279,0.10701291263103485,0.02601008303463459,0.06539677828550339,-0.07629624009132385,0.0029106521978974342,0.03443239629268646,0.07629624009132385,0.10899463295936584,0.031088242307305336,-0.007276630494743586,0.05623132362961769,0.03121209889650345,0.0787733942270279,0.0931408703327179,-0.032698389142751694,0.0016798179131001234,0.0013933973386883736,0.06490135192871094,-0.02254207246005535,0.09066371619701385,-0.07728710025548935,0.10453576594591141,0.02947809360921383,-0.0388912670314312,-0.018207058310508728,-0.038148120045661926,-0.07381909340620041,-0.03195524588227272,-0.03245067596435547,-0.019321775063872337,-0.0032977070659399033,-0.018702488392591476,-0.007555309683084488,0.052267882972955704,0.03591868653893471,-0.031088242307305336,-0.02774408832192421,-0.07233279943466187,-0.026133941486477852,-0.09958145767450333,0.032202959060668945,0.06391049176454544,0.027991803362965584,0.07233279943466187,-0.11345350742340088,-0.01709233969449997,0.017959343269467354,0.0007276630494743586,0.004087298642843962,-0.09809517115354538,0.020312637090682983,0.009475101716816425,-0.002941616578027606,-0.06391049176454544,-0.04533185809850693,-0.044588714838027954,0.041616134345531464,-0.028115661814808846,0.04260699450969696,-0.04235927760601044,-0.032698389142751694,-0.019693348556756973,-0.0604424774646759,0.021055782213807106,0.007431452162563801,-0.023780647665262222,0.032202959060668945,0.06787393242120743,-0.017463913187384605,0.048799868673086166,-0.02836337685585022,0.12782098352909088,0.001617889036424458,0.06886479258537292,-0.030592812225222588,-0.051029305905103683,0.05846075713634491,1.0341620509279892e-5,-0.05003844574093819,0.06638763844966888,0.04904758557677269,-0.06836935877799988,0.17042797803878784,0.1565559208393097,0.05722218379378319,0.021055782213807106,0.06787393242120743,-0.1248483955860138,-0.054001886397600174,0.009598959237337112,0.007090844213962555,0.046322718262672424,-0.06490135192871094,0.010465961880981922,-0.09363629668951035,-0.012014181353151798,-0.021675068885087967,-0.004892372526228428,0.03319381922483444,0.05573589354753494,0.054745033383369446,0.05251559615135193,-0.010156318545341492,-0.012014181353151798,-0.1545742005109787,-0.12138038873672485,-0.11147178709506989,0.00916545744985342,0.015172548592090607,0.036414116621017456,0.013438543304800987]
}'
curl -X POST 'localhost:9200/categories2/_doc/3?pretty' -H 'Content-Type:application/json' -d '{
"name": "UVカットフィルター",
"my_vector":[-0.10059012472629547,0.06930611282587051,0.11117855459451675,-0.07460033148527145,0.005384459160268307,-0.028636900708079338,-0.006046236492693424,-0.001534119714051485,-6.0161557485116646e-5,-0.07123128324747086,-0.008723425678908825,0.08326359838247299,0.06738094240427017,-0.06449318677186966,0.0030531990341842175,0.057273801416158676,0.02454591542482376,-0.040669213980436325,-0.07460033148527145,-0.05679250881075859,0.07267516106367111,-0.012754250317811966,-0.009505526162683964,-0.09770236909389496,-0.0996275395154953,-0.10588434338569641,0.05679250881075859,-0.12224828451871872,0.08518876880407333,0.05655186250805855,0.04620407521724701,0.10829080641269684,0.09048298001289368,-0.09337073564529419,0.032727885991334915,0.06834352761507034,-0.059920910745859146,0.053664110600948334,0.004211308900266886,-0.07219386845827103,0.04139115288853645,-0.014198127202689648,-0.004812924657016993,0.0382627509534359,0.06641835719347,0.07941325753927231,-0.05173894017934799,0.07700679451227188,0.05318281799554825,-0.028396254405379295,0.0827823057770729,0.0047226822935044765,-0.08326359838247299,0.08807651698589325,0.02274106815457344,-0.04812924563884735,-0.004000743385404348,-0.021297192201018333,0.003308885730803013,-0.086632639169693,-0.015882650390267372,-0.048610538244247437,-0.0011881907703354955,0.03946598246693611,0.0348937027156353,-0.010347788222134113,0.022981714457273483,0.024786561727523804,-0.086632639169693,0.07556291669607162,-0.051257647573947906,-0.009325041435658932,0.13187412917613983,-0.005474701523780823,-0.0928894430398941,-0.08133842796087265,-0.006738094612956047,0.052942171692848206,-0.029358839616179466,0.003308885730803013,-0.1029965877532959,-0.12321086972951889,-0.086632639169693,-0.02635076269507408,0.0315246544778347,-0.03248723968863487,0.006016155704855919,0.06353060156106949,-0.06353060156106949,0.008121809922158718,0.04909183084964752,0.006768175400793552,0.07556291669607162,-0.06256801635026932,0.006256802007555962,0.0024967046920210123,-0.10347788035869598,-0.03850339725613594,0.08518876880407333,-0.04476019740104675,-0.03344982489943504,0.02189880609512329,0.043075673282146454,-0.022019129246473312,-0.03296853229403496,0.1530510038137436,-0.04909183084964752,0.07123128324747086,0.10732822120189667,0.0348937027156353,0.060642849653959274,0.03248723968863487,-0.11021596938371658,-0.02707270160317421,0.07700679451227188,0.007700679358094931,0.05510798469185829,-0.08567005395889282,0.003684895345941186,-0.034412410110235214,-0.026952378451824188,-0.08759522438049316,-0.030321424826979637,0.1424625664949417,-0.03417176380753517,-0.1164727732539177,0.0928894430398941,-0.08085713535547256,0.07893196493387222,0.09337073564529419,0.11454760283231735,0.024666238576173782,0.057273801416158676,0.09385202825069427,-0.09914624691009521,-0.011551018804311752,0.04090986028313637,0.07508162409067154,0.09048298001289368,0.028275931254029274,0.10540305078029633,-0.09770236909389496,-0.04692601412534714,0.02779463864862919,0.044038258492946625,0.044038258492946625,-0.06449318677186966,0.11021596938371658,-0.0037450569216161966,0.012694088742136955,0.0731564536690712,-0.015160712413489819,0.04018792137503624,0.003399128094315529,0.10010883212089539,-0.02105654589831829,-0.06449318677186966,0.09000168740749359,-0.06689964979887009,-0.018048467114567757,-0.051017001271247864,0.0013160341186448932,0.011851826682686806,0.04909183084964752,0.021297192201018333,0.02262074500322342,-0.023342683911323547,0.05655186250805855,-0.038984689861536026,0.08470747619867325,-0.0315246544778347,-0.0044519552029669285,-0.02442559227347374,-0.029479162767529488,-0.09240815043449402,0.05871767923235893,0.045000843703746796,-0.053664110600948334,-0.07604420930147171,-0.01137053407728672,-0.061605434864759445,0.1260986179113388,-0.05775509402155876,-0.02262074500322342,0.004873086232692003,9.588248212821782e-5,0.05342346429824829,0.036337580531835556,0.05173894017934799,-0.05173894017934799,0.051979586482048035,-0.012874573469161987,-0.02262074500322342,-0.05558927729725838,0.014859904535114765,-0.020575253292918205,0.11021596938371658,-0.000488812627736479,-0.008061648346483707,-0.08807651698589325,0.007219386752694845,-0.13379929959774017,-0.031765300780534744,0.08470747619867325,0.05149829387664795,0.08326359838247299,-0.07219386845827103,0.15690134465694427,0.045000843703746796,-0.04716666042804718,-0.09433332085609436,0.04716666042804718,0.06112414225935936,0.09433332085609436,0.022380098700523376,-0.05943961814045906,0.04355696588754654,-0.020695576444268227,0.05486733838915825,0.051257647573947906,-0.015521681867539883,0.10203400254249573,0.022861391305923462,0.07171257585287094,0.11887923628091812,-0.05510798469185829,-0.04885118454694748,0.051979586482048035,-0.07411903887987137,0.05607056990265846,-0.020815899595618248,-0.016845235601067543,0.04427890479564667,0.033690471202135086,-0.05607056990265846,0.061605434864759445,-0.04042856767773628,-0.08374489098787308,0.012513604015111923,-0.07796937972307205,0.06353060156106949,0.01840943656861782,0.03056207112967968,0.08903910219669342,0.009024233557283878,0.09481461346149445,0.019492344930768013,-0.023823976516723633,0.023222360759973526,-0.13283671438694,-0.06834352761507034,0.007279548328369856,0.000488812627736479,-0.023102037608623505,0.06593706458806992,0.003504410618916154]
}'
curl -X POST 'localhost:9200/categories2/_doc/4?pretty' -H 'Content-Type:application/json' -d '{
"name": "機動戦士ガンダム アーセナルベース",
"my_vector":[-0.21282006800174713,0.12504681944847107,0.12865394353866577,0.029758738353848457,0.014729072339832783,-0.06432697176933289,-0.01653263345360756,0.03501912206411362,-0.0823625698685646,-0.008867503143846989,0.07935663312673569,0.09198155254125595,0.07605011016130447,0.12685038149356842,-0.050499677658081055,0.013000661507248878,0.03907713294029236,-0.024197762832045555,0.10941597074270248,0.09558867663145065,0.07094002515077591,0.12444563210010529,-0.06913646310567856,-0.015330259688198566,-0.008416612632572651,-0.03216348588466644,-0.006575478706508875,-0.02359657548367977,0.05861569568514824,0.05741332471370697,0.11001715809106827,0.019162824377417564,-0.055008579045534134,-0.019688863307237625,0.024197762832045555,-0.06733290106058121,-0.0748477354645729,0.14488598704338074,-0.026151617988944054,-0.050499677658081055,-0.014879369176924229,-0.034718528389930725,-0.0016720503335818648,0.02660250850021839,0.006237311288714409,0.07304417341947556,0.006537904497236013,-0.018711933866143227,0.01254977099597454,0.10039816796779633,0.10641003400087357,0.039678316563367844,-0.05470798537135124,0.12504681944847107,0.02029004879295826,0.03261437639594078,-0.020740939304232597,-0.01555570401251316,0.10460647195577621,-0.1496954709291458,0.009468689560890198,0.013752144761383533,0.006688201334327459,0.044487811625003815,-0.007477258797734976,-0.019839158281683922,-0.10039816796779633,-0.009919579140841961,0.036972977221012115,-0.012249177321791649,-0.06071985140442848,0.03081081435084343,0.14428479969501495,0.05170205235481262,-0.01728411577641964,-0.0046216221526265144,-0.03126170486211777,-0.0008454187191091478,0.04839552566409111,0.06071985140442848,0.1310586929321289,-0.011197101324796677,0.10641003400087357,0.03937772661447525,-0.042984843254089355,-0.048696119338274,0.022243905812501907,-0.04569018632173538,0.0003405158640816808,-0.015405407175421715,0.02780488133430481,-0.10039816796779633,0.004565260838717222,-0.06342519074678421,0.03937772661447525,-0.11482664942741394,-0.053806204348802567,0.06162162870168686,0.0037762036081403494,-0.00837903842329979,-0.06913646310567856,0.07033883780241013,0.05891628935933113,-0.05891628935933113,-0.05290442332625389,-0.036221496760845184,-0.01878708228468895,-0.033215560019016266,0.04839552566409111,0.0748477354645729,0.0901779979467392,0.06613053381443024,-0.0901779979467392,-0.0024235337041318417,0.0823625698685646,0.0032501653768122196,-0.017960451543331146,0.06282400339841843,0.08957681059837341,-0.019388269633054733,-0.0748477354645729,0.04358603060245514,-0.06071985140442848,0.011723139323294163,-0.011347398161888123,-0.06613053381443024,0.05741332471370697,-0.12865394353866577,0.03607119992375374,-0.0021980886813253164,0.01826104335486889,-0.11602902412414551,-0.019237972795963287,-0.0020947596058249474,-0.0225444994866848,-0.05019908398389816,-0.016607780009508133,-0.009919579140841961,0.022995388135313988,0.06703230738639832,0.05110086500644684,0.07033883780241013,-0.01803559996187687,0.06252340972423553,-0.07003824412822723,0.08777324855327606,-0.059517476707696915,0.02359657548367977,-0.0112722497433424,0.03261437639594078,0.07755307853221893,-0.10340410470962524,0.018937379121780396,0.12083851546049118,0.11963614076375961,0.10280291736125946,0.012700067833065987,0.0027617011219263077,0.0037762036081403494,0.03426763787865639,0.025700729340314865,0.0017941663973033428,-0.09077918529510498,-0.06041925773024559,-0.014428479596972466,0.10280291736125946,-0.009393541142344475,0.006425182335078716,0.06071985140442848,0.04358603060245514,-0.036221496760845184,0.0375741645693779,0.02029004879295826,-0.00021839982946403325,0.01953856647014618,-0.04689255729317665,0.052002646028995514,0.021191829815506935,-0.03261437639594078,-0.034718528389930725,-0.05290442332625389,-0.045990776270627975,0.03937772661447525,0.13226106762886047,0.11963614076375961,0.015405407175421715,0.019688863307237625,0.003719842294231057,-0.06342519074678421,-0.00189749535638839,0.07695189118385315,-0.06613053381443024,0.1016005426645279,-0.04238365963101387,0.013226105831563473,0.029909035190939903,0.012098881416022778,-0.03216348588466644,-0.026903102174401283,0.06342519074678421,0.019688863307237625,0.04689255729317665,-0.0637257844209671,0.03035992570221424,-0.06071985140442848,-0.14067767560482025,-0.09498748928308487,-0.028255771845579147,-0.030660519376397133,0.07605011016130447,-0.06823468208312988,0.019388269633054733,0.0450889989733696,0.007214239798486233,0.021342124789953232,0.02930784784257412,-0.0751483291387558,0.013977589085698128,0.04719315096735954,0.04058009758591652,0.12143970280885696,0.09198155254125595,0.01750956103205681,0.007815426215529442,0.0042083063162863255,0.033666450530290604,0.00804087147116661,0.0375741645693779,-0.0411812849342823,0.007815426215529442,0.056812137365341187,-0.0637257844209671,0.03802505508065224,0.01014502439647913,0.05741332471370697,-0.011873436160385609,-0.1611180156469345,0.10641003400087357,0.009994727559387684,0.024197762832045555,0.02179301530122757,0.033666450530290604,-0.14368361234664917,-0.08777324855327606,0.05290442332625389,0.0937851145863533,0.10400529205799103,-0.07574951648712158,0.08897562325000763,0.011798287741839886,0.0937851145863533,-0.01675807684659958,-0.0009064767509698868,0.05771391838788986,0.018336191773414612,0.000565960886888206]
}'
curl -X POST 'localhost:9200/categories2/_doc/5?pretty' -H 'Content-Type:application/json' -d '{
"name": "外付けSSD",
"my_vector":[-0.10149215161800385,-0.015996044501662254,0.06536314636468887,-0.10866279155015945,-0.016202891245484352,-0.011445445939898491,-0.02082243748009205,0.035163719207048416,0.060950446873903275,-0.07115481793880463,0.005929568316787481,0.011721240356564522,-0.010135425254702568,-0.09983738511800766,0.006377733312547207,0.04274805262684822,0.02206351049244404,0.011238601058721542,0.0620536245405674,-0.005584826227277517,-0.043575432151556015,0.03943852335214615,0.09542468190193176,-0.0024649077095091343,-0.115281842648983,0.0005558970151469111,-0.011169652454555035,-0.06425997614860535,-0.012341775931417942,0.010204373858869076,0.05957147851586342,0.02358037605881691,0.09542468190193176,-0.1445159912109375,-0.06177783012390137,0.1285199522972107,0.027165697887539864,0.013307054527103901,-0.06481156498193741,-0.09321833401918411,0.024683551862835884,0.016754478216171265,-0.0039472999051213264,0.04274805262684822,0.02261509746313095,0.10645643621683121,-0.10204373300075531,-0.019443469122052193,0.019581366330385208,0.13182947039604187,0.08439292758703232,-0.025235140696167946,0.0620536245405674,0.07501593232154846,0.01316915825009346,0.1577540934085846,-0.030199430882930756,0.005584826227277517,0.06950005888938904,-0.024959346279501915,-0.058744095265865326,-0.06039886176586151,-0.022752994671463966,0.07225799560546875,0.07667069882154465,0.05929568409919739,-0.03530161827802658,-0.010824909433722496,-0.13403582572937012,-0.05212504416704178,-0.00031026810756884515,0.04991869255900383,-0.034887924790382385,-0.0020425983238965273,-0.11914295703172684,-0.07556752115488052,-0.014961818233132362,0.008377239108085632,0.015444457530975342,-0.060950446873903275,-0.02537303790450096,-0.06701791286468506,0.0023787221871316433,0.06370838731527328,-0.04054170101881027,-0.09211515635251999,0.1196945458650589,-0.132932648062706,-0.046609167009592056,-0.13182947039604187,0.11693660914897919,0.04826392978429794,0.03199208900332451,-0.005653774365782738,0.10425008833408356,-0.043299637734889984,-0.01316915825009346,0.01689237542450428,-0.0332331620156765,-0.011859136633574963,0.07556752115488052,0.0948730930685997,0.07115481793880463,-0.011721240356564522,0.12521041929721832,-0.04716075211763382,-0.05047028139233589,0.01592709682881832,-0.06756950169801712,0.08659927546977997,0.002533856313675642,0.07777387648820877,-0.11417866498231888,-0.074464350938797,-0.015720251947641373,-0.1445159912109375,0.115281842648983,0.03157839924097061,0.06260520964860916,-0.0620536245405674,0.04716075211763382,0.03199208900332451,-0.06922426074743271,0.148928701877594,-0.12962312996387482,-0.016064994037151337,0.02261509746313095,-0.04550598934292793,-0.048815518617630005,-0.041093289852142334,0.05488298088312149,-0.02413196489214897,0.08218657970428467,-0.06315679848194122,-0.10755961388349533,-0.06591473519802094,0.05819251015782356,0.00023270108795259148,-0.06839688122272491,0.0408174954354763,0.05184924975037575,0.030337326228618622,0.003361237933859229,0.027441490441560745,-0.030337326228618622,0.008101445622742176,-0.11252390593290329,0.07501593232154846,0.038886938244104385,0.18312713503837585,0.012617570348083973,0.09101197868585587,-0.01985715888440609,-0.010755961760878563,-0.008032497018575668,0.07391276210546494,-0.08990880846977234,-0.0416448749601841,0.048539724200963974,0.0020684541668742895,0.02206351049244404,0.0019047014648094773,-0.015375508926808834,-0.016202891245484352,0.02757938764989376,-0.09211515635251999,0.03750796616077423,-0.004860867280513048,-0.01889188028872013,-0.013238105922937393,-0.0021374025382101536,0.008032497018575668,0.05957147851586342,-0.11748819053173065,0.07115481793880463,-0.08494451642036438,-0.013996539637446404,-0.04495440423488617,-0.048815518617630005,-0.08880563080310822,-0.11417866498231888,0.02757938764989376,0.02633831650018692,0.00086185586405918,-0.020270850509405136,0.07032743841409683,-0.009032249450683594,-0.000896330107934773,0.024407759308815002,0.04771234095096588,0.00713616656139493,-0.02082243748009205,-0.05295242369174957,-0.13900011777877808,0.008653032593429089,0.0038438772317022085,0.08825404196977615,-0.13513900339603424,0.008549610152840614,-0.0832897499203682,0.027993079274892807,-0.027717284858226776,0.021649818867444992,0.03778376057744026,-0.03419844061136246,-0.06039886176586151,-0.026614109054207802,0.017926601693034172,0.09652785956859589,-0.06398417800664902,0.015375508926808834,-0.05295242369174957,0.03130260482430458,-0.06398417800664902,0.06481156498193741,-0.009721734561026096,-0.015720251947641373,-0.05047028139233589,0.035853203386068344,-0.05488298088312149,-0.026889903470873833,0.032405782490968704,0.043851226568222046,0.043851226568222046,-0.09156356751918793,-0.022890891879796982,-0.035163719207048416,0.01289336383342743,0.048539724200963974,0.01861608773469925,0.055986158549785614,0.05267663300037384,-0.0576409213244915,-0.05957147851586342,-0.03668058663606644,-0.0416448749601841,-0.005343506578356028,-0.0576409213244915,0.015099715441465378,-0.05819251015782356,0.002197732450440526,0.038611143827438354,-0.06977584958076477,-0.02578672766685486,0.04274805262684822,-0.022477202117443085,0.01454812753945589,0.00634325947612524,-0.09432150423526764,-0.12521041929721832,0.019443469122052193,-0.13238106667995453,0.036128997802734375,-0.048815518617630005,-0.09321833401918411,0.010204373858869076]
}'
curl -X POST 'localhost:9200/categories2/_doc/6?pretty' -H 'Content-Type:application/json' -d '{
"name": "入浴用品",
"my_vector":[-0.14357386529445648,0.036421310156583786,-0.05885472521185875,0.06650847941637039,0.04539467766880989,0.09448426961898804,0.0037444010376930237,0.06360533088445663,-0.0860387459397316,0.005047518759965897,-0.03615738824009895,0.02784382738173008,0.08128814399242401,0.0527845099568367,-0.04618644341826439,0.07759322971105576,0.012074456550180912,-0.03404600918292999,0.07337046414613724,0.09026151150465012,-0.03800484538078308,-0.022829299792647362,-0.08815012872219086,0.013657991774380207,-0.03721307963132858,-0.024148913100361824,0.005575363524258137,-0.07125908881425858,-0.01834261603653431,-0.10820823907852173,0.05621550232172012,0.04750605672597885,0.11823730170726776,-0.026524215936660767,-0.07442615926265717,0.054104119539260864,0.04539467766880989,-0.04249152913689613,0.03879661485552788,-0.011678572744131088,-0.06202179566025734,-0.04513075575232506,-0.000993833295069635,0.0012288893340155482,-0.08815012872219086,0.14674092829227448,0.03483777493238449,0.08392737060785294,-0.001781477127224207,-0.03404600918292999,0.07970460504293442,0.02045399695634842,-0.04935351386666298,0.10768039524555206,-0.0316707044839859,0.07284262031316757,-0.13037773966789246,-0.025468524545431137,0.041435837745666504,0.06861986219882965,-0.07864891737699509,0.00897336658090353,0.037477001547813416,0.10926393419504166,0.05252058431506157,-0.027579905465245247,-0.07970460504293442,-0.042755451053380966,0.004849576856940985,0.10187409818172455,-0.09448426961898804,-0.07653753459453583,0.04961743950843811,0.03562954440712929,-0.00696095684543252,-0.04750605672597885,0.02494068071246147,0.060438260436058044,-0.004948547575622797,0.010952785611152649,-0.07178693264722824,0.014251817017793655,-0.14674092829227448,-0.05700726807117462,0.04645036906003952,0.0055093830451369286,0.04011622816324234,0.05885472521185875,0.11401453614234924,0.08076030015945435,0.12615497410297394,-0.06967554986476898,0.058326881378889084,0.06914770603179932,-0.025204602628946304,0.060438260436058044,-0.060438260436058044,-0.01214043702930212,-0.0215096864849329,0.020190075039863586,-0.04645036906003952,0.08234383165836334,0.06096610799431801,-0.0430193729698658,0.07970460504293442,0.016099274158477783,0.07864891737699509,0.018078694120049477,0.16363197565078735,0.09923487901687622,0.038268767297267914,0.08339952677488327,-0.06677240133285522,-0.057271189987659454,-0.06730024516582489,-0.03378208726644516,0.16574335098266602,-0.08709444105625153,0.1404067873954773,-0.007686743978410959,-0.0028866527136415243,-0.00031959370244294405,-0.04196368530392647,0.016693100333213806,0.041435837745666504,-0.01939830742776394,0.06677240133285522,0.05489588901400566,-0.0039423429407179356,0.08498305827379227,-0.005674334708601236,0.029427362605929375,0.03378208726644516,0.00290314806625247,-0.10187409818172455,-0.06017433851957321,-0.04117191582918167,-0.022829299792647362,0.019926151260733604,0.08973366767168045,-0.06677240133285522,-0.06360533088445663,-0.020190075039863586,-0.06123002991080284,0.02045399695634842,0.03906053677201271,0.0036124398466199636,0.0005484640132635832,0.08867797255516052,0.033254239708185196,0.019134383648633957,0.029427362605929375,0.03233051300048828,0.0013938408810645342,-0.08234383165836334,-0.10820823907852173,0.013130146078765392,0.0535762757062912,0.08920581638813019,-0.006993947550654411,0.04513075575232506,0.00198766659013927,0.026260292157530785,-0.010029057040810585,0.030087169259786606,-0.02995520830154419,-0.06650847941637039,0.0215096864849329,-0.11243100464344025,0.016693100333213806,-0.045658599585294724,0.05674334615468979,0.05806295946240425,0.06360533088445663,-0.02467675693333149,0.05172881856560707,0.020190075039863586,0.04645036906003952,-0.0012536321301013231,0.05595158040523529,-0.041699763387441635,0.10081841051578522,-0.06439709663391113,-0.0844552144408226,-0.03721307963132858,0.051992740482091904,-0.027052059769630432,0.012404359877109528,0.10820823907852173,-0.060438260436058044,-0.014317797496914864,-0.004288741387426853,-0.005146489478647709,0.044602908194065094,-0.07020339369773865,-0.03562954440712929,0.047769978642463684,-0.06545279175043106,0.0038433719892054796,-0.06809201836585999,-0.0072908601723611355,-0.05040920525789261,0.015769371762871742,-0.08234383165836334,-0.04645036906003952,-0.01860653981566429,0.03589346632361412,0.0860387459397316,0.021377725526690483,-0.06730024516582489,-0.047769978642463684,0.09131719917058945,0.01266828179359436,-0.010292978957295418,-0.150963693857193,0.0422276072204113,0.10504116863012314,0.038268767297267914,0.05700726807117462,0.02256537787616253,-0.003117585089057684,-0.08815012872219086,-0.03061501495540142,0.058326881378889084,0.13090558350086212,0.10398548096418381,0.0723147764801979,-0.0025732447393238544,-0.027975790202617645,0.08498305827379227,0.06360533088445663,-0.003018614137545228,0.05146489664912224,0.1404067873954773,0.045658599585294724,0.07653753459453583,0.08656659722328186,0.047769978642463684,0.003958838060498238,-0.026260292157530785,0.06307748705148697,0.02533656358718872,-0.008643463253974915,0.07442615926265717,0.028635594993829727,0.007653753738850355,-0.06914770603179932,-0.009567191824316978,-0.0625496432185173,-0.10504116863012314,0.07337046414613724,0.03457385301589966,-0.1446295529603958,0.09290073812007904,-0.024412835016846657,0.002705206163227558]
}'
curl -X POST 'localhost:9200/categories2/_doc/7?pretty' -H 'Content-Type:application/json' -d '{
"name": "望遠鏡・光学機器",
"my_vector":[-0.04279673099517822,0.03674615919589996,-0.07496806979179382,-0.011953569948673248,0.06699902564287186,-0.025530464947223663,-0.0077476841397583485,-0.047223981469869614,0.030843162909150124,-0.012101145461201668,-0.09208676218986511,0.025382889434695244,0.058144524693489075,-0.052831828594207764,-0.04545308277010918,-0.08441286534070969,0.010404033586382866,-0.06227662414312363,0.06198147311806679,0.04958517849445343,0.007673896849155426,0.020955640822649002,0.03335193544626236,0.08323226869106293,-0.02257896587252617,-0.023759564384818077,-0.006567084696143866,-0.05548817664384842,-0.02213624119758606,-0.011879782192409039,-0.0351228341460228,0.03276163712143898,0.0019184742122888565,0.012470082379877567,-0.0017524524591863155,0.01837307959794998,0.0005741587374359369,0.07290202379226685,-0.10330245643854141,-0.011805995367467403,-0.06050572544336319,-0.012396294623613358,0.0014204088365659118,0.0546027272939682,0.03925493359565735,0.028777113184332848,0.10035096108913422,0.03777918592095375,-0.07113111764192581,0.030548011884093285,0.12396294623613358,-0.04545308277010918,-0.014388556592166424,0.10035096108913422,-0.13872043788433075,0.057849377393722534,-0.025678038597106934,0.028777113184332848,-0.029367413371801376,-0.008670027367770672,-0.09208676218986511,0.10212185978889465,0.019775042310357094,-0.03276163712143898,0.010699182748794556,-0.020808067172765732,0.07496806979179382,0.047519128769636154,0.007932152599096298,-0.04515793174505234,-0.03246648609638214,-0.09326735883951187,0.17000633478164673,-0.06463782489299774,-0.020070191472768784,-0.09503825753927231,0.02198866568505764,0.09621886163949966,0.06198147311806679,-0.09267706423997879,0.03925493359565735,-0.04988032951951027,0.17590932548046112,-0.030105287209153175,0.1263241469860077,-0.03408981114625931,-0.06345722079277039,0.041911281645298004,-0.024349864572286606,-0.19361832737922668,0.08205166459083557,0.03394223749637604,-0.026120765134692192,-0.09444796293973923,0.05047062784433365,-0.06758932024240494,-0.07083597034215927,-0.005202016793191433,0.018004141747951508,0.02803923934698105,-0.0370413102209568,0.05401242896914482,-0.058144524693489075,-0.04427248239517212,0.0785098671913147,-0.07142627239227295,0.03408981114625931,0.04988032951951027,-0.005902997683733702,-0.012027357704937458,0.12278234958648682,0.0531269796192646,-0.030990736559033394,0.025973189622163773,-0.02184109017252922,0.1428525447845459,0.04869972914457321,0.09562855958938599,0.08205166459083557,-0.023759564384818077,-0.08146136999130249,0.1233726516366005,0.02833438850939274,0.19361832737922668,0.008965177461504936,-0.05962027609348297,0.06227662414312363,-0.04958517849445343,-0.07791956514120102,0.05519302561879158,0.029810138046741486,-0.1121569573879242,0.03777918592095375,-0.016602180898189545,-0.016011880710721016,0.11156665533781052,-0.012839019298553467,0.040730684995651245,0.057849377393722534,-0.04250158369541168,0.035270411521196365,-0.11451815068721771,0.0036524797324091196,-0.008706921711564064,-0.05047062784433365,-0.08146136999130249,-0.03895978257060051,0.03408981114625931,0.041616134345531464,-0.04958517849445343,0.09917035698890686,0.03777918592095375,0.023464415222406387,-0.089725561439991,-0.00169711175840348,-0.13340774178504944,0.012543870136141777,-0.089725561439991,0.046338532119989395,0.06021057441830635,0.015421581454575062,0.002434986410662532,0.03689373657107353,-0.05430757626891136,0.019922615960240364,-0.046338532119989395,0.13104654848575592,-0.052831828594207764,-0.023316839709877968,0.035860709846019745,0.024497440084815025,0.034827686846256256,0.006419509649276733,-0.005017547868192196,0.06404752284288406,0.08559346199035645,0.02213624119758606,-0.08500316739082336,-0.0016417711740359664,-0.1009412556886673,0.07319717109203339,-0.0740826204419136,-0.1062539592385292,-0.05666877701878548,0.018446868285536766,0.0702456682920456,-0.10153155773878098,0.013060382567346096,0.14698463678359985,0.056963928043842316,-0.01697111874818802,0.03349951282143593,0.012543870136141777,0.03925493359565735,-0.0336470864713192,0.025530464947223663,-0.009407902136445045,0.07437776774168015,-0.03733646124601364,-0.01114190835505724,0.051946379244327545,-0.08146136999130249,-0.020512916147708893,0.024645015597343445,-0.09562855958938599,0.03955008462071419,-0.01416719425469637,0.06699902564287186,-0.03984523192048073,0.008706921711564064,-0.014462344348430634,-0.02272654138505459,0.04309188202023506,0.03276163712143898,-0.05342212691903114,-0.046338532119989395,0.05489787831902504,0.05017548054456711,-0.089725561439991,0.06375237554311752,-0.012839019298553467,0.151116743683815,-0.010330245830118656,0.025825614109635353,-0.025530464947223663,0.05430757626891136,0.05548817664384842,-0.025678038597106934,-0.0740826204419136,-0.031285885721445084,0.1233726516366005,0.057849377393722534,-0.005202016793191433,0.03408981114625931,0.05991542711853981,-0.09858006238937378,-0.014388556592166424,-0.02685863897204399,0.01667596772313118,0.06463782489299774,-0.020660491660237312,0.000272091303486377,0.01055160816758871,-0.05991542711853981,-0.05371727794408798,-0.03468010947108269,-0.1286853402853012,-0.03438496217131615,0.025825614109635353,-0.09503825753927231,-0.0560784786939621,0.06198147311806679,-0.10448306053876877,0.025087740272283554,-0.025973189622163773,0.014314768835902214]
}'
curl -X POST 'localhost:9200/categories2/_doc/8?pretty' -H 'Content-Type:application/json' -d '{
"name": "ボール",
"my_vector":[-0.0894092321395874,0.014280641451478004,-0.033735428005456924,0.17302341759204865,-0.05049965903162956,0.01779906079173088,0.01779906079173088,0.0600200854241848,-0.023697584867477417,0.001358213135972619,-0.11507299542427063,0.047188207507133484,0.0596061535179615,-0.03290756419301033,-0.02162792719900608,-0.06540119647979736,-0.06457333266735077,0.07326589524745941,0.09272068738937378,0.04656730964779854,0.04594641178846359,0.026491623371839523,0.09520427137613297,-0.054638974368572235,-0.01345277763903141,-0.0060020084492862225,0.007968183606863022,-0.07823307812213898,0.002496525179594755,-0.019868718460202217,0.10058538615703583,0.09975752234458923,0.022248825058341026,-0.025353312492370605,0.06622906029224396,0.1514989733695984,0.148187518119812,0.0519484207034111,-0.009365202859044075,-0.04636034369468689,-0.03477025777101517,0.08071666955947876,-0.006726388819515705,-0.017695577815175056,0.07657735049724579,0.045532479882240295,0.0596061535179615,0.04967179521918297,0.057536497712135315,0.05049965903162956,0.025870727375149727,-0.01966175250709057,-0.03994440287351608,0.046981241554021835,0.14735965430736542,0.08402811735868454,-0.012004016898572445,0.0150050213560462,-0.024628931656479836,-0.08775350451469421,-0.023697584867477417,-0.03849564120173454,0.020593099296092987,0.008951271884143353,-0.01997220143675804,-0.059192221611738205,-0.055880770087242126,0.008330374024808407,-0.04760213568806648,-0.074093759059906,-0.07326589524745941,0.08485598117113113,0.01655726507306099,0.002211947226896882,-0.051534488797187805,-0.05546683818101883,0.009054753929376602,0.0063641988672316074,0.06954051554203033,0.08568384498357773,-0.051534488797187805,-0.07161017507314682,0.035184189677238464,-0.03580508753657341,0.05712256580591202,-0.000278110324870795,0.15729402005672455,0.11093367636203766,-0.02980307675898075,0.07699128240346909,0.08071666955947876,0.06457333266735077,-0.08733957260847092,-0.040979232639074326,0.05215538665652275,-0.04987876117229462,-0.02835431694984436,0.03870260715484619,-0.04801606759428978,0.023697584867477417,-0.00972739327698946,-0.005200016312301159,0.010400032624602318,-0.09603213518857956,0.04842999950051308,0.07616341859102249,-0.17385128140449524,0.05546683818101883,0.06829871982336044,-0.03642598167061806,0.06788478791713715,-0.033735428005456924,-0.02711252123117447,-0.0055363355204463005,0.02493938058614731,0.07119624316692352,0.036839913576841354,-0.08775350451469421,0.08858136832714081,-0.03477025777101517,-0.059192221611738205,-0.051741454750299454,-0.02421499975025654,-0.046981241554021835,-0.005432852543890476,-0.018316473811864853,0.019765235483646393,-0.06333153694868088,0.010762222111225128,-0.017488611862063408,0.12335162609815598,0.04532551392912865,0.006674647331237793,0.029182180762290955,0.04139316454529762,-0.036632947623729706,0.010917446576058865,-0.02017916738986969,-0.0004333346732892096,0.004113445524126291,0.014487607404589653,0.07119624316692352,0.08651170879602432,0.03642598167061806,-0.02473241463303566,-0.050085727125406265,0.028975214809179306,-0.05422504246234894,0.062089744955301285,-0.06457333266735077,-0.0447046160697937,-0.07947487384080887,-0.02400803379714489,-0.03166576847434044,-0.04346282035112381,-0.025767244398593903,0.04801606759428978,-0.019144337624311447,0.11258940398693085,0.05877828970551491,-0.06540119647979736,0.0013776161940768361,0.017592094838619232,0.014901538379490376,-0.02111051231622696,0.08733957260847092,0.026698589324951172,0.046981241554021835,-0.07119624316692352,0.02069658227264881,-0.044083718210458755,0.03166576847434044,-0.08651170879602432,0.07243803143501282,-0.11672872304916382,-0.032286666333675385,0.013142329640686512,-0.06291760504245758,0.054638974368572235,0.009106495417654514,-0.0008407986024394631,0.01153834443539381,-0.10017145425081253,-0.09727393090724945,0.09437641501426697,-0.03642598167061806,-0.090237095952034,-0.1349417120218277,0.029182180762290955,0.030423974618315697,0.09520427137613297,-0.09934359043836594,-0.0189373716711998,0.08568384498357773,-0.08071666955947876,0.057536497712135315,-0.0596061535179615,-0.005588077008724213,0.054638974368572235,-0.02069658227264881,-0.03725384548306465,-0.039530470967292786,0.005018921103328466,0.02524982951581478,-0.06871265172958374,0.09479033946990967,0.06167581304907799,0.04656730964779854,0.074093759059906,0.016971196979284286,0.00817514955997467,0.027940385043621063,-0.07161017507314682,-0.04925786331295967,0.039737436920404434,0.0072438037022948265,0.04925786331295967,0.08320026099681854,-0.002199011854827404,0.025870727375149727,0.004242799244821072,0.039530470967292786,0.12666307389736176,0.01997220143675804,-0.026077693328261375,-0.009675651788711548,-0.03125183656811714,0.007864700630307198,0.07078231126070023,0.0374608114361763,0.04946482926607132,-0.01728164590895176,-0.1055525690317154,0.028975214809179306,-0.07823307812213898,-0.01583288423717022,0.10845008492469788,0.039530470967292786,0.01055525615811348,0.048636965453624725,-0.12335162609815598,-0.21855589747428894,-0.027526453137397766,-0.04987876117229462,0.024628931656479836,0.0006985096260905266,-0.03249363228678703,-0.017178162932395935,0.0749216228723526,-0.19206427037715912,0.11010581254959106,-0.00041393161518499255,-0.1200401708483696,-0.0015393082285299897,0.10762222111225128,0.0073472862131893635]
}'
curl -X POST 'localhost:9200/categories2/_doc/9?pretty' -H 'Content-Type:application/json' -d '{
"name": "ジョーゼット",
"my_vector":[-0.026377741247415543,0.061587847769260406,-0.039865002036094666,-0.09309791028499603,-0.0336584746837616,-0.08450425416231155,-0.01730666309595108,-0.024945465847849846,-0.0429682657122612,0.02566160261631012,-0.011458204127848148,0.1823764145374298,-0.09548503160476685,0.0056992629542946815,-0.1317693442106247,0.0697040781378746,-0.005221837665885687,-0.03222619742155075,0.04368440434336662,0.07400090247392654,-0.022080913186073303,0.06827180087566376,0.015874387696385384,0.008892043493688107,-0.07304605096578598,0.006594435311853886,0.0030585050117224455,-0.02112606354057789,0.12174341827630997,-0.03628431260585785,-0.06349755078554153,0.08402682840824127,-0.04511667788028717,-0.010264640673995018,-0.06015557050704956,0.08116228133440018,0.0389101505279541,-0.02542288973927498,-0.024468040093779564,-0.013308226130902767,0.12317569553852081,0.0006676492630504072,-0.0036851256154477596,0.0725686252117157,-0.02184220217168331,0.07734287530183792,-0.03795529901981354,0.03843272477388382,0.08545910567045212,-0.014740502461791039,0.1260402500629425,-0.04583281651139259,0.00865333154797554,-0.01480017974972725,-0.017784086987376213,0.15277604758739471,0.052516769617795944,0.0522780567407608,0.006206527352333069,-0.09596245735883713,0.0013502180809155107,0.05848458409309387,0.023274477571249008,0.02387125790119171,0.10837551206350327,-0.11219491809606552,-0.06827180087566376,0.10312383621931076,-0.06540724635124207,-0.06206527352333069,-0.07638802379369736,-0.035329461097717285,-0.0697040781378746,-0.04463925212621689,0.009846894070506096,0.0052516767755150795,0.006833147723227739,-0.013546939007937908,-0.020648637786507607,0.0673169493675232,0.026616452261805534,0.003341976087540388,0.044161826372146606,-0.0021334937773644924,0.05156191810965538,-0.08641395717859268,0.0644523948431015,0.07065892219543457,0.026616452261805534,-0.025303533300757408,0.003938757814466953,0.022080913186073303,-0.1207885667681694,-0.061110422015190125,-0.029242292046546936,-0.00641540065407753,-0.0012607008684426546,-0.048458654433488846,-0.0563361681997776,-0.0563361681997776,0.07304605096578598,0.09023335576057434,0.026377741247415543,-0.0034464129712432623,0.10312383621931076,0.09739473462104797,0.0006378102116286755,-0.0551426075398922,0.015098570846021175,0.0014621146256104112,0.04320697858929634,-0.07018149644136429,0.003998435568064451,-0.05729101970791817,-0.04081985354423523,-0.0806848555803299,-0.006833147723227739,-0.018380869179964066,0.039865002036094666,-0.10360126197338104,-0.05180063098669052,-0.0911882072687149,-0.08211712539196014,0.06540724635124207,0.06588467210531235,-0.16518910229206085,0.030793923884630203,-0.03413590043783188,0.0348520390689373,-0.06015557050704956,-0.02160348929464817,-0.029003579169511795,-0.042013414204120636,0.0806848555803299,0.0261390283703804,0.06683952361345291,-0.035090748220682144,0.11219491809606552,-0.005609745625406504,0.03174877539277077,0.001007068669423461,-0.03700045123696327,0.04105856269598007,-0.1986088752746582,0.07018149644136429,0.039387576282024384,-0.10073670744895935,-0.04869736731052399,-0.006803308613598347,0.035090748220682144,-0.052516769617795944,-0.021961558610200882,0.0018425628077238798,-0.04774251580238342,-0.06349755078554153,0.029242292046546936,0.07686544954776764,0.01480017974972725,0.04941350594162941,-0.19478946924209595,0.0673169493675232,0.0016933673759922385,0.04034242779016495,-0.0045056999661028385,0.04320697858929634,0.0023871257435530424,0.00641540065407753,0.05347161740064621,-0.0042073093354702,-0.007937193848192692,-0.03222619742155075,-0.05347161740064621,-0.01897764950990677,-0.005132320336997509,-0.13558875024318695,-0.002282689092680812,0.03389718756079674,-0.061110422015190125,0.08975593000650406,0.05371033027768135,0.060871709138154984,-0.11887886375188828,-0.09691730886697769,-0.10551096498966217,0.007698480971157551,0.054426468908786774,-0.16041485965251923,0.050607066601514816,0.005520228296518326,0.04941350594162941,0.025303533300757408,-0.06254269927740097,0.05800715833902359,-0.039626289159059525,0.03461332619190216,0.046548955142498016,-0.06254269927740097,-0.0725686252117157,-0.027332590892910957,-0.013606617227196693,-0.02339383400976658,-0.017784086987376213,0.029122935608029366,-0.016113098710775375,0.08020742982625961,-0.08354940265417099,-0.035329461097717285,0.011398525908589363,0.015993742272257805,0.057052306830883026,0.009727537631988525,-0.03867143765091896,0.05991685763001442,0.044161826372146606,0.05132320523262024,-0.08545910567045212,0.008892043493688107,-0.05418775603175163,-0.0038044818211346865,0.0389101505279541,0.0673169493675232,0.13081449270248413,-0.0042968266643583775,0.061587847769260406,0.0911882072687149,-0.03700045123696327,0.061110422015190125,0.007549285423010588,0.018022799864411354,0.11792401969432831,-0.0024020452983677387,-0.08163970708847046,0.022438982501626015,0.02387125790119171,0.08832365274429321,0.037477876991033554,0.010085606947541237,-0.06922665238380432,0.010324318893253803,0.014382433146238327,0.0281680840998888,-0.047981228679418564,0.01378565188497305,0.0045056999661028385,-0.10360126197338104,-0.07495575398206711,-0.054426468908786774,0.02769066020846367,0.017545374110341072,-0.09309791028499603,0.04583281651139259,0.1394081562757492,-0.14895665645599365,0.08975593000650406,-0.06874922662973404,0.00865333154797554]
}'
検索します。キーワードは「オーディオプレーヤー」
curl -X GET 'localhost:9200/categories2/_knn_search?pretty' -H 'Content-Type:application/json' -d '{
"knn": {
"field": "my_vector",
"num_candidates": 100,
"k": 3,
"query_vector":[-0.035606756806373596,-0.04464130476117134,0.026837928220629692,-0.013551824726164341,0.11585481464862823,-0.024446429684758186,-0.024977874010801315,-0.12754659354686737,0.0759965106844902,-0.03427814692258835,-0.1344553530216217,0.013751116581261158,0.011226756498217583,-0.042515527456998825,-0.013020380400121212,0.006709482055157423,-0.06271040439605713,-0.01899912767112255,0.16049611568450928,-0.0040854765102267265,-0.07333929091691971,0.011891062371432781,0.017139073461294174,-0.015744032338261604,-0.010230299085378647,-0.06217896193265915,-0.035606756806373596,-0.07971661537885666,0.036669645458459854,-0.06616479158401489,0.027103649452328682,0.04490702599287033,0.011160326190292835,-0.052612967789173126,0.10894604027271271,0.15093012154102325,0.03932686522603035,0.02564217895269394,0.03095662035048008,-0.010562451556324959,0.024446429684758186,0.059521742165088654,-0.003022588323801756,0.0101638687774539,-0.04437558352947235,-0.01753765530884266,-0.01614261418581009,0.11000893265008926,-0.010097438469529152,-0.06722767651081085,-0.008702397346496582,0.04278125241398811,0.04650136083364487,0.11266615241765976,-0.012953950092196465,0.07333929091691971,-0.06138179451227188,0.0039194002747535706,0.09300272166728973,-0.14880435168743134,-0.04357841610908508,-0.05792740732431412,-0.013020380400121212,0.021124903112649918,-0.01547831017524004,-0.03985830768942833,-0.0406554751098156,0.06616479158401489,0.009300271980464458,-0.01620904542505741,0.08715683221817017,0.003720108885318041,0.02006201446056366,-0.05128435790538788,-0.14242702722549438,0.005879100412130356,0.03959258645772934,0.11904348433017731,-0.04596991464495659,0.0406554751098156,-2.7117142963106744e-5,0.03268381208181381,-0.021656347438693047,0.03069089725613594,0.047829970717430115,0.0019597001373767853,0.029760871082544327,0.09565994143486023,0.14030124247074127,0.054473020136356354,0.042249806225299835,0.14348991215229034,0.005181580316275358,0.01003100723028183,0.026306483894586563,0.019929153844714165,0.01282108947634697,-0.09991149604320526,-0.036403920501470566,-0.027103649452328682,0.006709482055157423,0.08290528506040573,0.09991149604320526,-0.0379982553422451,0.03534103184938431,0.012754658237099648,0.031089480966329575,0.042515527456998825,0.048095691949129105,0.024313567206263542,0.04915858060121536,0.08928260952234268,-0.12276358902454376,-0.09193982928991318,0.11054037511348724,-0.03201950713992119,0.07174495607614517,0.05181580036878586,0.0786537304520607,-0.0860939472913742,-0.0022752450313419104,-0.11744914948940277,-0.0887511670589447,-0.041452642530202866,0.013153241947293282,-0.011758200824260712,-0.003404563758522272,-0.06217896193265915,-0.01926484890282154,-0.013219672255218029,-0.16581057012081146,0.0044176289811730385,0.10894604027271271,-0.03427814692258835,-0.04357841610908508,0.07227639853954315,-0.0022420298773795366,0.04543847218155861,0.036935366690158844,0.019131988286972046,0.008204168640077114,0.0006269379518926144,-0.018069099634885788,0.12063781172037125,0.06563334912061691,-0.12223214656114578,-0.05128435790538788,0.0017853201134130359,0.14561568200588226,0.006244468502700329,-0.0016524590319022536,0.03852969780564308,-0.007672724314033985,-0.036935366690158844,-0.07121351361274719,0.06271040439605713,0.08077950775623322,0.06217896193265915,-0.00032592471688985825,-0.04703280329704285,0.027767954394221306,0.0018600544426590204,0.025509316474199295,0.04278125241398811,0.035606756806373596,-0.11107181757688522,-0.09512849897146225,0.11904348433017731,-0.03932686522603035,-0.015146156772971153,-0.03852969780564308,-0.059256017208099365,-0.014614713378250599,-0.05128435790538788,0.005281225778162479,0.03321525827050209,0.0940656065940857,0.04676708206534386,-0.03534103184938431,-0.05500446632504463,0.03148806467652321,-0.04623563587665558,-0.05022146925330162,-0.10575737804174423,0.04942430183291435,-0.1015058234333992,-0.08768828213214874,-0.032816674560308456,0.031355202198028564,-0.06483618170022964,0.019929153844714165,-0.08290528506040573,-0.017936239019036293,0.07705939561128616,-0.0887511670589447,-0.07174495607614517,-0.0635075718164444,0.03480958938598633,-0.04357841610908508,-0.0914083868265152,0.017936239019036293,-0.1243579238653183,-0.01228964515030384,-0.0759965106844902,-0.002374890958890319,0.0015195979503914714,-0.07918517291545868,0.003089018864557147,-0.019663432613015175,-0.015146156772971153,-0.07705939561128616,0.01089460402727127,0.05101863294839859,-0.005978746339678764,0.023782124742865562,0.0008760524215176702,0.03321525827050209,0.05792740732431412,0.04729852452874184,-0.03427814692258835,0.004650135990232229,0.042249806225299835,0.0057130241766572,-0.0228520967066288,0.026306483894586563,0.017670515924692154,0.048361413180828094,0.052878689020872116,0.10363160073757172,0.047564249485731125,-0.04437558352947235,0.0813109502196312,-0.11107181757688522,0.03095662035048008,0.07280784100294113,-0.053410131484270096,0.058724574744701385,-0.04995574802160263,0.011758200824260712,0.027236510068178177,0.0507529117166996,-0.037201087921857834,-0.006809127517044544,0.11532337218523026,-0.011691770516335964,0.06722767651081085,-0.036403920501470566,0.01899912767112255,-0.0940656065940857,-0.16899922490119934,0.0940656065940857,-0.08024805784225464,-0.07918517291545868,0.0126882279291749,-0.16581057012081146,0.004351198673248291]
}
}'
検索します。キーワードは「服」
curl -X GET 'localhost:9200/categories2/_knn_search?pretty' -H 'Content-Type:application/json' -d '{
"knn": {
"field": "my_vector",
"num_candidates": 100,
"k": 3,
"query_vector":[-0.06285550445318222,-0.010010321624577045,-0.040274083614349365,0.08380734175443649,0.08520413190126419,0.052612386643886566,-0.013967890292406082,-4.3649655708577484e-5,0.0015859375707805157,-0.040274083614349365,0.03515252470970154,-0.019555047154426575,0.0030409260652959347,-0.00401576841250062,-0.044930048286914825,0.0754266083240509,0.028517775237560272,0.01676146872341633,0.15178440511226654,0.11360550671815872,0.06425229460000992,0.1853073388338089,0.013153096660971642,0.008380734361708164,-0.05843234062194824,0.11313991248607635,0.045628439635038376,-0.011174311861395836,0.05237958952784538,0.06704587489366531,0.04679243266582489,0.02688818797469139,0.043998852372169495,0.05913073569536209,0.09870642423629761,-0.012163704261183739,0.05796674266457558,-0.05005160719156265,-0.09265366941690445,0.06611467897891998,0.044697247445583344,0.0370149090886116,-0.009661124087870121,0.021068233996629715,0.10801835358142853,0.03142775222659111,0.0047141630202531815,0.03911009430885315,0.05424197390675545,0.02071903645992279,-0.0021533831022679806,0.09125687927007675,-0.017925459891557693,-0.00515065947547555,-0.007449541240930557,-0.09218807518482208,-0.0796169713139534,0.027470184490084648,0.030496560037136078,0.06518349051475525,-0.02362901344895363,0.07077064365148544,0.009602924808859825,0.03678211197257042,0.038644496351480484,-0.02607339434325695,-0.06983944773674011,-0.04772362485527992,-0.024211009964346886,0.015597477555274963,-0.1028967946767807,-0.0038120700046420097,0.05237958952784538,0.06611467897891998,-0.025607798248529434,0.04725802689790726,0.032591745257377625,0.06518349051475525,-0.06611467897891998,0.06145871803164482,0.03445412963628769,-0.01990424282848835,-0.0037247706204652786,0.0013822391629219055,0.0810137614607811,0.027004588395357132,0.07775458693504333,0.10941514372825623,0.00442316522821784,-0.02688818797469139,0.05540596321225166,-0.002444380894303322,-0.08054816722869873,0.018041858449578285,0.02840137667953968,-0.07915137708187103,-0.005296158604323864,-0.02688818797469139,-0.010825115256011486,-0.06704587489366531,-0.08380734175443649,0.06332109868526459,0.07775458693504333,-0.04772362485527992,0.07356422394514084,0.026422591879963875,0.015713876113295555,0.00710034416988492,0.09963762015104294,-0.04353325814008713,-0.037946101278066635,-0.0019205849384889007,0.0023425316903740168,-0.09591284394264221,0.04423165321350098,-0.025724198669195175,0.017110666260123253,0.06285550445318222,0.05447477102279663,-0.036316514015197754,-0.023279817774891853,-0.07868578284978867,0.011290711350739002,0.03748050704598427,0.06704587489366531,-0.031194955110549927,-0.007973337545990944,-0.09405045956373215,-0.054940368980169296,-0.008613532409071922,0.012629300355911255,0.16854587197303772,0.06937385350465775,-0.03538532182574272,0.030263762921094894,0.11639908701181412,-0.09917201846837997,-0.10056880861520767,0.03748050704598427,0.012105504982173443,-0.007915137335658073,0.025840597227215767,0.051681194454431534,-0.034919723868370056,0.012105504982173443,0.0048305620439350605,0.04376605525612831,-0.09963762015104294,-0.03142775222659111,0.04818922281265259,-0.10894954204559326,0.07449541240930557,0.0022697821259498596,-0.029332568868994713,-0.03375573456287384,-0.030496560037136078,0.062389910221099854,0.022348623722791672,0.027470184490084648,0.06983944773674011,0.05284518375992775,4.137623909628019e-5,0.015248280018568039,0.03654931113123894,-0.04423165321350098,-0.01070871576666832,0.029681766405701637,0.046326834708452225,-0.057268351316452026,-0.09405045956373215,-0.020951835438609123,0.024793004617094994,-0.007391341961920261,0.001891485182568431,0.013735092245042324,0.06797706335783005,-0.08986009657382965,0.01757626235485077,0.0020369840785861015,0.0010330418590456247,0.1056903675198555,0.05889793857932091,-0.1042935773730278,-0.037946101278066635,-0.06704587489366531,-0.0020515338983386755,-0.021184634417295456,-0.0011276161530986428,0.06564908474683762,-0.0033755735494196415,0.02828497812151909,-0.03771330416202545,0.025142202153801918,0.020486239343881607,-0.060993120074272156,0.043998852372169495,0.02141743153333664,-0.026422591879963875,0.02304701879620552,0.02083543688058853,-0.05913073569536209,-0.014433486387133598,-0.017110666260123253,-0.023163417354226112,0.00515065947547555,-0.02979816496372223,0.009719323366880417,0.014317087829113007,-0.00055289565352723,-0.05680275335907936,0.04353325814008713,0.037247706204652786,0.06937385350465775,0.022814219817519188,0.00710034416988492,-0.003899369388818741,0.13129816949367523,-0.040972478687763214,-0.01501548197120428,-0.058665137737989426,-0.054940368980169296,0.018856652081012726,0.008613532409071922,0.040972478687763214,-0.0021824827417731285,0.11733027547597885,-0.0064019495621323586,0.010475917719304562,-0.02909977175295353,0.017809059470891953,0.007129443809390068,0.06658027321100235,-0.06797706335783005,0.0535435788333416,-0.05913073569536209,0.014666284434497356,-0.07449541240930557,-0.034221332520246506,0.009777523577213287,-0.05424197390675545,-0.004132167436182499,-0.11546789109706879,-0.07077064365148544,-0.009020929224789143,0.006925745401531458,-0.015713876113295555,0.029332568868994713,-0.029681766405701637,0.0014695384306833148,-0.521467924118042,0.02071903645992279,-0.012571101076900959,-0.04306766018271446,0.019322248175740242,0.07123623788356781,0.005528956651687622]
}
}'
検索します。キーワードは「キッチンタイマー」
curl -X GET 'localhost:9200/categories2/_knn_search?pretty' -H 'Content-Type:application/json' -d '{
"knn": {
"field": "my_vector",
"num_candidates": 100,
"k": 3,
"query_vector":[-0.13178442418575287,0.17141883075237274,-0.014986761845648289,0.01659690961241722,-0.09066371619701385,0.03294610604643822,0.1803365796804428,-0.009289314970374107,-0.027496373280882835,-0.08917742967605591,-0.02130349725484848,-0.059451617300510406,0.048799868673086166,0.04260699450969696,0.0931408703327179,0.027000943198800087,0.016101479530334473,-0.05846075713634491,-0.007772060576826334,-0.0026474548503756523,-0.06886479258537292,-0.019197918474674225,0.006316734477877617,-0.15952850878238678,-0.06391049176454544,-0.10106775164604187,-0.08521398901939392,-0.06440591812133789,-0.05846075713634491,-0.08521398901939392,0.04211156442761421,0.023285217583179474,-0.04557957500219345,0.00829845480620861,0.07035107910633087,0.036414116621017456,0.041616134345531464,0.04780900850892067,0.01833091489970684,-0.07530537992715836,0.022046642377972603,0.06440591812133789,-0.0032822247594594955,-0.007090844213962555,-0.057717613875865936,-0.07381909340620041,-0.04260699450969696,0.07926882803440094,0.011642608791589737,0.1084992066025734,0.12435296922922134,-0.1075083464384079,-0.11791237443685532,0.024028362706303596,-0.09413173049688339,0.05251559615135193,-0.11692151427268982,0.10156317800283432,0.03740497678518295,0.016720768064260483,0.08125054836273193,0.06985565274953842,0.048799868673086166,-0.03963441401720047,0.03666182979941368,-0.004520799964666367,-0.14763818681240082,0.03666182979941368,0.04557957500219345,0.1075083464384079,0.017340054735541344,-0.006038054823875427,0.11543522775173187,0.0921500101685524,-0.02539079450070858,-0.00133146857842803,0.009289314970374107,-0.026257798075675964,-0.03666182979941368,0.017340054735541344,-0.05003844574093819,-0.04657043516635895,-0.04136841744184494,-0.02650551311671734,0.06985565274953842,-0.04954301565885544,0.08125054836273193,0.035175539553165436,0.044093284755945206,-0.038148120045661926,0.016225337982177734,0.027000943198800087,0.02477150782942772,0.012571539729833603,0.014553260989487171,-0.14466559886932373,-0.028858806937932968,-0.03765268996357918,-0.021427353844046593,-0.10949006676673889,0.003886030288413167,-0.010342104360461235,0.023285217583179474,0.05177244916558266,0.03468010947108269,0.0388912670314312,-0.007369523402303457,0.06936021894216537,-0.05672675371170044,-0.01065174862742424,0.07035107910633087,0.04731357842683792,-0.012199967168271542,-0.042854707688093185,0.01009438931941986,-0.07183737307786942,0.015729907900094986,0.07728710025548935,-0.02130349725484848,0.04483642801642418,-0.001888827420771122,-0.028239518404006958,0.03368924930691719,0.009413172490894794,0.11791237443685532,-0.019941063597798347,0.044588714838027954,-0.0901682898402214,-0.05449731647968292,-0.03294610604643822,-0.02724865823984146,-0.08967285603284836,0.03368924930691719,0.008112668991088867,-0.08521398901939392,-0.08917742967605591,0.005511660594493151,0.10255403816699982,-0.08174597471952438,-0.006750235799700022,0.10503119230270386,0.12980270385742188,-0.0194456335157156,-0.04359785467386246,0.0787733942270279,0.10701291263103485,0.02601008303463459,0.06539677828550339,-0.07629624009132385,0.0029106521978974342,0.03443239629268646,0.07629624009132385,0.10899463295936584,0.031088242307305336,-0.007276630494743586,0.05623132362961769,0.03121209889650345,0.0787733942270279,0.0931408703327179,-0.032698389142751694,0.0016798179131001234,0.0013933973386883736,0.06490135192871094,-0.02254207246005535,0.09066371619701385,-0.07728710025548935,0.10453576594591141,0.02947809360921383,-0.0388912670314312,-0.018207058310508728,-0.038148120045661926,-0.07381909340620041,-0.03195524588227272,-0.03245067596435547,-0.019321775063872337,-0.0032977070659399033,-0.018702488392591476,-0.007555309683084488,0.052267882972955704,0.03591868653893471,-0.031088242307305336,-0.02774408832192421,-0.07233279943466187,-0.026133941486477852,-0.09958145767450333,0.032202959060668945,0.06391049176454544,0.027991803362965584,0.07233279943466187,-0.11345350742340088,-0.01709233969449997,0.017959343269467354,0.0007276630494743586,0.004087298642843962,-0.09809517115354538,0.020312637090682983,0.009475101716816425,-0.002941616578027606,-0.06391049176454544,-0.04533185809850693,-0.044588714838027954,0.041616134345531464,-0.028115661814808846,0.04260699450969696,-0.04235927760601044,-0.032698389142751694,-0.019693348556756973,-0.0604424774646759,0.021055782213807106,0.007431452162563801,-0.023780647665262222,0.032202959060668945,0.06787393242120743,-0.017463913187384605,0.048799868673086166,-0.02836337685585022,0.12782098352909088,0.001617889036424458,0.06886479258537292,-0.030592812225222588,-0.051029305905103683,0.05846075713634491,1.0341620509279892e-5,-0.05003844574093819,0.06638763844966888,0.04904758557677269,-0.06836935877799988,0.17042797803878784,0.1565559208393097,0.05722218379378319,0.021055782213807106,0.06787393242120743,-0.1248483955860138,-0.054001886397600174,0.009598959237337112,0.007090844213962555,0.046322718262672424,-0.06490135192871094,0.010465961880981922,-0.09363629668951035,-0.012014181353151798,-0.021675068885087967,-0.004892372526228428,0.03319381922483444,0.05573589354753494,0.054745033383369446,0.05251559615135193,-0.010156318545341492,-0.012014181353151798,-0.1545742005109787,-0.12138038873672485,-0.11147178709506989,0.00916545744985342,0.015172548592090607,0.036414116621017456,0.013438543304800987]
}
}'
検索します。キーワードは「ゴルフ」
curl -X GET 'localhost:9200/categories2/_knn_search?pretty' -H 'Content-Type:application/json' -d '{
"knn": {
"field": "my_vector",
"num_candidates": 100,
"k": 3,
"query_vector":[-0.09343869984149933,0.022960364818572998,0.031146233901381493,0.09823042899370193,0.08385524153709412,-0.053906943649053574,-0.0015286111738532782,-0.029548989608883858,-0.022561052814126015,0.042726244777441025,0.011480182409286499,-0.0966331884264946,0.07626833766698837,0.01836829073727131,0.08744903653860092,0.013876046054065228,-0.013277079910039902,0.019965535029768944,0.030547266826033592,0.09383801370859146,0.008685007691383362,0.005914789624512196,0.08385524153709412,-0.029149679467082024,-0.049913834780454636,-0.12218906730413437,0.019965535029768944,-0.04033038020133972,-0.002358428668230772,-0.0682821273803711,0.02815140224993229,-0.005041297525167465,0.060295913368463516,-0.019466396421194077,0.004342503845691681,0.060295913368463516,0.0035937961656600237,-0.03833382576704025,-0.02186225913465023,0.06069522351026535,0.0778655856847763,-0.04911521449685097,-0.005141125060617924,0.10861250758171082,0.14295321702957153,0.041528310626745224,0.01896725781261921,0.06069522351026535,0.10461939871311188,0.05989660322666168,0.021762432530522346,0.036137618124485016,-0.06269177794456482,0.11739733815193176,0.014774494804441929,0.0742717832326889,-0.022860536351799965,0.08824766427278519,-0.05430625379085541,-0.09982766956090927,-0.05869866907596588,0.015972428023815155,0.0022211656905710697,0.021762432530522346,0.09343869984149933,0.021063638851046562,-0.016172083094716072,0.06628557294607162,-0.04691900685429573,-0.07826489210128784,-0.0754697173833847,-0.009982767514884472,-0.011430268175899982,-0.0011542574502527714,-0.031146233901381493,-0.040929343551397324,-0.03254381939768791,0.05630280449986458,0.01337690744549036,-0.005191038828343153,-0.02615484967827797,-0.023160019889473915,-0.0966331884264946,-0.015073978342115879,0.10861250758171082,-0.051111768931150436,0.1413559764623642,0.05670211836695671,0.05790004879236221,-0.036337271332740784,0.02675381489098072,0.060295913368463516,0.06788281351327896,0.014475012198090553,-0.0022211656905710697,0.010481905192136765,-0.051910389214754105,-0.08744903653860092,-0.06588625907897949,-0.006438884884119034,0.1437518447637558,0.04192762076854706,0.10541801899671555,-0.10621663928031921,0.08505317568778992,0.10302215814590454,-0.05869866907596588,0.09982766956090927,-0.026554159820079803,-0.07906351238489151,-0.02186225913465023,0.03533899411559105,-0.08944559097290039,-0.08864697068929672,-0.001759462640620768,-0.029548989608883858,0.153335303068161,-0.012678113766014576,-0.009683283977210522,-0.006339056883007288,0.021363122388720512,-0.1285780370235443,-0.06508763879537582,-0.07107730209827423,0.024258123710751534,-0.10461939871311188,-0.042726244777441025,0.0495145246386528,-0.014475012198090553,-0.018767602741718292,0.025555884465575218,0.07267454266548157,0.02186225913465023,-0.019965535029768944,0.04112900048494339,-0.08066076040267944,-0.1189945861697197,0.023160019889473915,0.04033038020133972,-0.07107730209827423,0.041528310626745224,0.047318316996097565,0.03474003076553345,0.06468833237886429,0.0247572623193264,-0.10102560371160507,-0.028351059183478355,-0.03374175354838371,-0.003219442442059517,0.05630280449986458,0.02875036932528019,0.0966331884264946,0.010781388729810715,0.013277079910039902,-0.07107730209827423,-0.044722795486450195,-0.009833025746047497,-0.005515479017049074,-0.002620476298034191,-0.03673658147454262,0.055104874074459076,0.0008859705994836986,0.006588626187294722,0.024557607248425484,0.02735278196632862,0.009283972904086113,0.04372451826930046,0.1309739053249359,-0.039531756192445755,0.05630280449986458,-0.02126329392194748,0.05151107907295227,0.02735278196632862,0.17889118194580078,0.017370015382766724,0.011480182409286499,0.017170358449220657,0.005839918740093708,0.04252658784389496,-0.00848535168915987,-0.1002269834280014,0.03314278647303581,0.021363122388720512,-0.011580009944736958,0.04372451826930046,0.030547266826033592,-0.09184145927429199,-0.11020974814891815,0.07387247681617737,0.10541801899671555,0.07387247681617737,0.022660881280899048,-0.051910389214754105,-0.08625110983848572,-0.011679837480187416,0.05989660322666168,-0.003394140861928463,0.027552437037229538,0.022061916068196297,-0.04352486506104469,0.023359674960374832,-0.11020974814891815,0.07586903125047684,0.0030322654638439417,0.012977597303688526,-0.010182422585785389,-0.005590349435806274,0.049913834780454636,-0.05470556393265724,0.08385524153709412,-0.019166912883520126,0.12937666475772858,0.03394140675663948,0.04312555491924286,-0.07946282625198364,-0.017769325524568558,0.025955194607377052,0.06388971209526062,0.08704973012208939,0.028351059183478355,0.055104874074459076,0.08425455540418625,0.04751797020435333,-0.09264007955789566,0.07586903125047684,0.03873313590884209,0.09463663399219513,0.13736286759376526,0.05430625379085541,0.10142491012811661,-0.05869866907596588,0.07986214011907578,-0.07906351238489151,0.06189315393567085,-0.08225800096988678,0.018867429345846176,0.060295913368463516,-0.041528310626745224,0.013975873589515686,-0.09703249484300613,-0.08225800096988678,-0.10102560371160507,-0.10861250758171082,-0.03793451562523842,-0.05989660322666168,-0.006314100231975317,0.11500147730112076,0.03274347633123398,-0.012278803624212742,-0.1613215208053589,-0.06149384379386902,-0.03873313590884209,-0.0010856259614229202,0.03573830425739288,0.09703249484300613,0.013077424839138985]
}
}'
検索します。キーワードは「ラケット」
curl -X GET 'localhost:9200/categories2/_knn_search?pretty' -H 'Content-Type:application/json' -d '{
"knn": {
"field": "my_vector",
"num_candidates": 100,
"k": 3,
"query_vector":[-0.10686872154474258,-0.012236876413226128,0.062408071011304855,0.1023818701505661,0.040789589285850525,-0.02121058665215969,0.006883243098855019,-0.08606602996587753,-0.057105425745248795,-0.01101318933069706,0.015500043518841267,0.08484234660863876,0.06281596422195435,0.05751332268118858,-0.0872897207736969,-0.05996069684624672,-0.09707922488451004,-0.016111887991428375,0.07831601053476334,-0.03875010833144188,-0.020598743110895157,0.013970434665679932,0.10034239292144775,-0.0033906346652656794,0.020700717344880104,-0.027532972395420074,0.014378330670297146,0.0022051872219890356,0.1174740195274353,0.021516507491469383,-0.0379343181848526,0.0033396475482732058,0.01855926401913166,0.033243514597415924,0.008412852883338928,0.16152676939964294,0.049559351056814194,-0.09789501130580902,-0.04201327636837959,-0.028960607945919037,0.03222377598285675,0.0265132337808609,-0.0063733733259141445,0.12400034815073013,0.03303956612944603,0.030388243496418,0.04140143468976021,0.030592191964387894,-0.014378330670297146,0.13786880671977997,0.05996069684624672,0.07872390747070312,-0.05628963187336922,0.1060529351234436,0.10850030928850174,0.13868460059165955,-0.05873700976371765,0.07097388803958893,0.0012937948340550065,-0.05017119646072388,-0.06322386115789413,0.1329740583896637,-0.04364486038684845,0.08892130106687546,0.012083915993571281,-0.05955279991030693,-0.03956590220332146,-0.04772381857037544,0.018457289785146713,0.011268123984336853,-0.01254279911518097,0.09218446910381317,-0.052210673689842224,-0.004639816004782915,-0.0493554025888443,-0.01815136708319187,0.03854616358876228,0.051802776753902435,0.008769761770963669,0.08484234660863876,0.03365141153335571,-0.05628963187336922,-0.0066792950965464115,0.003518101992085576,-0.06567123532295227,-0.020598743110895157,0.05017119646072388,0.0987108051776886,0.049559351056814194,0.018865184858441353,0.0987108051776886,-0.01927308179438114,-0.049559351056814194,0.05628963187336922,0.03875010833144188,0.09218446910381317,-0.01743754930794239,-0.18436893820762634,-0.06118438392877579,-0.016927680000662804,0.014276356436312199,-0.007750021759420633,0.022230325266718864,-0.005073205102235079,0.014480303972959518,0.07423705607652664,-0.08198707550764084,-0.02916455641388893,0.05914490297436714,0.03630273416638374,-0.07097388803958893,0.07423705607652664,0.05017119646072388,0.016519783064723015,0.07790811359882355,0.04466459900140762,0.04772381857037544,0.026717180386185646,-0.027125077322125435,-0.020394794642925262,0.04507249593734741,0.01325661689043045,0.08076338469982147,0.1370530128479004,0.06771072000265121,0.02121058665215969,0.08688182383775711,-0.05506594479084015,-0.14194777607917786,0.10931609570980072,-0.11421085149049759,0.03303956612944603,-0.04140143468976021,0.026105336844921112,0.03181587904691696,0.07750021666288376,0.02049676887691021,0.012338850647211075,0.07097388803958893,-0.05751332268118858,0.08932919800281525,0.05465804785490036,0.007699035108089447,0.01743754930794239,0.05628963187336922,-0.013766486197710037,-0.07097388803958893,-0.04201327636837959,-0.11665822565555573,0.045684341341257095,-0.023352039977908134,0.04364486038684845,-0.021414535120129585,-0.0019502522191032767,-0.08565814048051834,0.030184296891093254,-0.09381605684757233,0.018865184858441353,-0.005379126872867346,-0.0056340619921684265,0.12400034815073013,0.00039833583286963403,0.08484234660863876,-0.057921215891838074,0.05996069684624672,-0.16152676939964294,0.10197397321462631,-0.05465804785490036,-0.09993449598550797,-0.13868460059165955,0.09136868268251419,0.01325661689043045,-0.014378330670297146,-0.01672373153269291,-0.09218446910381317,-0.048335663974285126,-0.007444099988788366,-0.014480303972959518,0.16152676939964294,-0.056697528809309006,-0.04670407995581627,0.08932919800281525,-0.0493554025888443,-0.09055288881063461,0.06281596422195435,-0.06730282306671143,-0.033243514597415924,0.032835617661476135,0.045684341341257095,-0.05628963187336922,0.06893440335988998,0.016111887991428375,-0.007240151986479759,-0.043440911918878555,-0.03222377598285675,-0.03711852803826332,-0.0011854474432766438,-0.09707922488451004,-0.016927680000662804,0.040789589285850525,-0.05873700976371765,-0.03630273416638374,-0.004410374443978071,0.06730282306671143,0.06648702919483185,0.07505284249782562,0.056697528809309006,-0.07260546833276749,0.10686872154474258,0.026717180386185646,0.021516507491469383,0.007648047991096973,0.09789501130580902,0.02426980622112751,0.022842170670628548,0.0038495175540447235,0.09789501130580902,-0.006194918882101774,0.015703991055488586,-0.12073718756437302,-0.02233229950070381,0.04690802842378616,-0.045684341341257095,0.035894837230443954,0.015805965289473534,0.020598743110895157,0.03303956612944603,0.0758686363697052,0.03528299555182457,0.10850030928850174,-0.048335663974285126,-0.01702965423464775,-0.025289544835686684,0.00586350355297327,3.445605034357868e-5,0.128895103931427,0.002587589668110013,-0.052210673689842224,0.012389837764203548,0.02467770129442215,-0.14521093666553497,-0.04446065053343773,0.001389395329169929,0.024473752826452255,-0.0758686363697052,0.012083915993571281,-0.005226165987551212,0.03385536000132561,0.004486854653805494,-0.014684252440929413,0.10686872154474258,0.019171107560396194,0.016111887991428375,0.014582278206944466,0.057921215891838074,0.01172700710594654]
}
}'
検索します。キーワードは「お風呂用品」
curl -X GET 'localhost:9200/categories2/_knn_search?pretty' -H 'Content-Type:application/json' -d '{
"knn": {
"field": "my_vector",
"num_candidates": 100,
"k": 3,
"query_vector":[-0.1096469983458519,0.045117903500795364,-0.0038363332860171795,-0.04905260354280472,0.006426678039133549,0.02032928727567196,0.0928589403629303,0.09180968999862671,-0.11279475688934326,-0.005115111358463764,-0.030034882947802544,0.008853076957166195,-0.040920890867710114,-0.047741036862134933,-0.02701827883720398,0.09600669890642166,-0.008525185286998749,0.04879029095172882,0.06426677852869034,0.01311566960066557,0.05823357403278351,0.02282126434147358,-0.019935818389058113,-0.03029719740152359,-0.08184178173542023,-0.07816939055919647,0.08918655663728714,-0.08341565728187561,-0.0676768571138382,-0.07239849865436554,0.09338356554508209,-0.017968466505408287,0.09338356554508209,-0.03173992037773132,0.03292033076286316,0.07921864092350006,-0.014951863326132298,-0.05482349917292595,0.018755408003926277,0.0035740199964493513,-0.050101857632398605,0.0083940289914608,-0.001942758564837277,-0.0001250087225344032,-0.03462536633014679,0.022165481001138687,0.008721920661628246,0.09862983226776123,0.0008279266185127199,-0.09443282335996628,0.027542905882000923,0.0057708946987986565,-0.06400446593761444,0.04905260354280472,-0.14899401366710663,0.007803823333233595,-0.06531603634357452,-0.06688991189002991,0.08131714910268784,-0.03856007009744644,-0.1510925143957138,0.019804660230875015,0.03803544119000435,0.04538021609187126,0.10859774053096771,-0.05954514071345329,-0.023083578795194626,-0.03173992037773132,-0.014951863326132298,0.029903726652264595,0.001352553372271359,-0.010820426978170872,0.11279475688934326,-0.09338356554508209,-0.08131714910268784,-0.058495886623859406,-0.03462536633014679,0.06977536529302597,-0.07344774901866913,0.00793498009443283,-0.07292312383651733,-0.034100741147994995,-0.039084695279598236,-0.036723874509334564,0.07869401574134827,0.022952422499656677,0.08551416546106339,0.047741036862134933,-0.00508232181891799,0.014427236281335354,0.15319101512432098,0.013902610167860985,-0.02452630177140236,-0.036723874509334564,0.025444399565458298,0.10492535680532455,-0.11489326506853104,0.013837031088769436,-0.017968466505408287,-0.0676768571138382,0.0755462571978569,0.006557834800332785,0.13273057341575623,-0.022558951750397682,-0.017312683165073395,-0.01632900908589363,0.034887682646512985,-0.04538021609187126,0.07134924083948135,-0.013640296645462513,0.03292033076286316,0.0253132414072752,-0.00964001752436161,-0.04380633682012558,0.006688991561532021,-0.036723874509334564,0.08498954027891159,-0.05193805322051048,0.07764476537704468,0.09600669890642166,-0.06243058666586876,-0.027542905882000923,-0.07292312383651733,-0.033444955945014954,0.0422324575483799,-0.025575555860996246,0.032395705580711365,-0.03803544119000435,-0.06138133257627487,0.0016886424273252487,-0.019935818389058113,0.12276266515254974,0.04695409536361694,0.03646156191825867,-0.10230222344398499,0.01849309355020523,0.006623412948101759,-0.020460445433855057,0.003721571294590831,-0.06820148229598999,-0.08184178173542023,0.021509697660803795,-0.05718431994318962,-0.06820148229598999,-0.0015410911291837692,0.055348124355077744,0.012394308112561703,-0.08656341582536697,0.2276880294084549,0.07712014019489288,-0.0928589403629303,0.09705595672130585,-0.013246825896203518,0.04485559090971947,-0.02623133920133114,-0.036723874509334564,-0.016656899824738503,0.09653133153915405,0.035936933010816574,0.033182643353939056,0.047741036862134933,0.00184439099393785,-0.08131714910268784,-0.045904844999313354,-0.13325519859790802,-0.001213199459016323,-0.02032928727567196,0.04354402422904968,-0.06925073266029358,0.10754849016666412,0.03960932046175003,0.006688991561532021,0.07292312383651733,0.024919772520661354,0.050888799130916595,0.07816939055919647,0.007213618140667677,-0.10335147380828857,0.07974327355623245,-0.06479141116142273,-0.01298451330512762,0.1521417647600174,-0.0844649150967598,-0.030952980741858482,-0.019148876890540123,0.004787219222635031,-0.0503641702234745,0.13115669786930084,0.07502163201570511,-0.04564252868294716,0.029641414061188698,0.0072791967540979385,0.03173992037773132,-0.06452909111976624,0.01586996018886566,-0.0034428632352501154,0.09128505736589432,-0.08866192400455475,-0.017968466505408287,-0.06505372375249863,-0.0755462571978569,-0.0338384285569191,0.021509697660803795,0.050888799130916595,-0.11541789025068283,0.1012529656291008,-0.0590205118060112,0.013312404975295067,0.04879029095172882,0.03029719740152359,-0.08708804845809937,0.061905961483716965,0.030690666288137436,0.05744663253426552,-0.13063207268714905,0.0419701412320137,0.06872610747814178,0.042494770139455795,0.07764476537704468,-0.013705874793231487,-0.015410911291837692,-3.3045340387616307e-5,-0.03213338926434517,0.006262732204049826,0.04616715759038925,-0.02439514547586441,-0.037510816007852554,0.021378541365265846,0.01567322574555874,0.0923343151807785,0.06374215334653854,0.027149435132741928,-0.038297753781080246,0.1426984816789627,0.04905260354280472,-0.019804660230875015,0.04275708273053169,-0.059282828122377396,0.009443282149732113,-0.08813729882240295,0.07816939055919647,0.004524906165897846,0.02780522033572197,0.09023580700159073,-0.0001526745909359306,-0.03292033076286316,-0.1253858059644699,-0.04406864941120148,0.011869681067764759,-0.12853355705738068,-0.048265665769577026,0.022296639159321785,-0.08026789873838425,0.04485559090971947,0.07974327355623245,0.012787777930498123]}
}'
検索します。キーワードは「外付けHDD」
curl -X GET 'localhost:9200/categories2/_knn_search?pretty' -H 'Content-Type:application/json' -d '{
"knn": {
"field": "my_vector",
"num_candidates": 100,
"k": 3,
"query_vector":[-0.11056534200906754,-0.021272988989949226,0.02154398337006569,-0.00955252069979906,-0.0015328068984672427,0.04092001914978027,0.042003992944955826,0.03875206783413887,-0.04525591433048248,-0.00029851627186872065,-0.047965846955776215,0.0704583078622818,-0.037397101521492004,-0.03983604535460472,-0.011042985133826733,0.013752919621765614,0.01991802267730236,0.019376033917069435,0.1680159717798233,-0.07967209070920944,0.0807560607790947,0.017885571345686913,0.07858811318874359,-0.1078554093837738,-0.02073100209236145,0.029944781213998795,0.0682903602719307,0.013752919621765614,0.07750413566827774,-0.1327868103981018,0.08346599340438843,0.06259949505329132,0.06693539023399353,-0.13007687032222748,-0.04064902290701866,0.04850783571600914,0.004437518306076527,0.039294056594371796,-0.059347573667764664,0.017072590067982674,-0.0033704815432429314,0.016191860660910606,-0.00287930597551167,0.07750413566827774,0.03604213520884514,0.06287048757076263,-0.03983604535460472,0.01883404701948166,0.03821008279919624,0.09809964150190353,0.09593169391155243,-0.024389414116740227,-0.008570169098675251,0.050675783306360245,-0.019376033917069435,0.11544322967529297,-0.02262795716524124,0.01910504139959812,-0.00199857703410089,0.03319670259952545,-0.19186338782310486,-0.062057510018348694,-0.0829240083694458,0.05013379827141762,0.08996984362602234,0.08238202333450317,-0.03129974752664566,0.11110733449459076,-0.1615121215581894,0.028860807418823242,-0.017479080706834793,0.0019308286719024181,0.0005462212720885873,0.00021700651268474758,-0.09701567143201828,-0.002625249559059739,0.03983604535460472,-0.03129974752664566,0.015107886865735054,-0.010771991685032845,0.014430403709411621,0.02073100209236145,0.033061206340789795,0.0004403644416015595,-0.02344093658030033,-0.1636800765991211,0.11056534200906754,-0.15175636112689972,0.011855965480208397,-0.05311472341418266,0.05880558863282204,0.06070254370570183,0.06314148753881454,-0.08888586610555649,-0.00799430813640356,0.00731682451441884,0.05311472341418266,-0.06178651750087738,-0.027099348604679108,0.005826360080391169,0.05636664852499962,0.06070254370570183,0.023305440321564674,-0.043629951775074005,0.1078554093837738,-0.06856135278940201,-0.03048676811158657,0.049862802028656006,0.010500998236238956,0.09484772384166718,-0.018698550760746002,0.10839739441871643,-0.06720639020204544,-0.11652719974517822,-0.04092001914978027,-0.08346599340438843,0.0642254576086998,0.03766809403896332,0.07100029289722443,-0.013549674302339554,0.013752919621765614,-0.07750413566827774,-0.062057510018348694,0.033467695116996765,-0.024931401014328003,-0.018698550760746002,0.03089325875043869,-0.03956504911184311,-0.08400798588991165,0.042003992944955826,0.05555366724729538,-0.009891262277960777,0.037397101521492004,-0.042816970497369766,-0.06368347257375717,-0.027234846726059914,0.08725990355014801,0.014023913070559502,0.07154228538274765,-0.059347573667764664,0.016191860660910606,-0.07587818056344986,-0.11490124464035034,0.09213779121637344,-0.0850919559597969,-0.0029301170725375414,-0.036584120243787766,0.07533618807792664,0.03292571008205414,0.1327868103981018,-0.024524910375475883,0.04688187316060066,-0.009823514148592949,0.1056874617934227,-0.02818332426249981,-0.03400968387722969,-0.007824936881661415,-0.031841736286878586,0.05853459611535072,0.06991632282733917,0.011652720160782337,0.002388130174949765,0.02940279431641102,-0.07913009822368622,-0.062057510018348694,-0.0014650585362687707,0.03902306407690048,0.01802106760442257,-0.1349547654390335,-0.02113749273121357,0.00034085899824276567,0.05230174586176872,0.15284033119678497,-0.027641335502266884,0.05230174586176872,-0.06287048757076263,-0.10243554413318634,-0.05094677582383156,-0.02235696278512478,-0.04850783571600914,-0.011449474841356277,-0.05880558863282204,-0.042003992944955826,-0.08021407574415207,0.03712610900402069,-0.015378881245851517,-0.10135156661272049,-0.01802106760442257,-0.047965846955776215,0.0023542558774352074,-0.060431547462940216,0.001151722390204668,-0.029673786833882332,-0.09809964150190353,0.0013634359929710627,0.08021407574415207,0.10677143931388855,-0.04417194053530693,-0.057721614837646484,-0.002489752834662795,-0.0476948544383049,-0.11002335697412491,0.03983604535460472,-0.06178651750087738,-0.01131397858262062,-0.10839739441871643,-0.0014650585362687707,-0.07154228538274765,0.1078554093837738,-0.09213779121637344,0.0075878179632127285,0.04959180951118469,-0.02303444780409336,-0.0022865075152367353,0.037397101521492004,0.06070254370570183,0.02547338791191578,-0.0807560607790947,-0.023982923477888107,0.024389414116740227,0.013549674302339554,-0.024524910375475883,-0.054198697209358215,0.05555366724729538,-0.06259949505329132,0.0031164251267910004,-0.03956504911184311,0.05446969345211983,0.022763453423976898,0.10243554413318634,-0.07642016559839249,0.09484772384166718,-0.11490124464035034,-0.03631312772631645,-0.0539277046918869,-0.041732996702194214,-0.01991802267730236,-0.07858811318874359,0.018292060121893883,-0.09918361902236938,0.018563054502010345,0.06585142016410828,0.034958161413669586,0.03793909028172493,-0.039294056594371796,0.07533618807792664,0.012397952377796173,0.0010924425441771746,-0.04904982075095177,-0.16909994184970856,0.04308796674013138,0.004335896112024784,0.05230174586176872,0.00785881094634533,0.0517597571015358,0.013346429914236069]
}
}'
検索します。キーワードは「顕微鏡」
curl -X GET 'localhost:9200/categories2/_knn_search?pretty' -H 'Content-Type:application/json' -d '{
"knn": {
"field": "my_vector",
"num_candidates": 100,
"k": 3,
"query_vector":[0.05946441367268562,0.08472362905740738,0.06130623072385788,-0.033942077308893204,0.015129219740629196,0.0399937629699707,0.007400162052363157,0.053412724286317825,-0.0018007060280069709,0.013155843131244183,-0.031968697905540466,0.06183246523141861,-0.029337530955672264,-0.015655454248189926,-0.09103843569755554,-0.08051376044750214,-0.010327337309718132,0.06577921658754349,0.09156467020511627,0.06841038912534714,-0.010722012259066105,-0.021049348637461662,0.030784673988819122,0.034731425344944,-0.046308569610118866,-0.0203915573656559,0.04446674883365631,-0.01841817982494831,0.08314493298530579,0.1441880464553833,0.06472674757242203,0.049729086458683014,0.03131090849637985,-0.07209402322769165,0.05472830682992935,0.05551765859127045,-0.01197181735187769,0.000339174090186134,-0.07314649224281311,-0.050781555473804474,-0.02815350517630577,0.06683168560266495,-0.002631168579682708,0.036047011613845825,0.09366960823535919,0.03065311536192894,-0.036047011613845825,0.07893505692481995,0.02552233636379242,-0.11787635833024979,0.053938958793878555,0.000678348180372268,-0.10208934545516968,0.06893661618232727,-0.07051531970500946,0.024206751957535744,-0.061569347977638245,0.07419895380735397,-0.06998908519744873,0.03920441493391991,-0.05893817916512489,0.03920441493391991,0.030784673988819122,0.03117934800684452,0.033942077308893204,-0.013155843131244183,-0.05499142408370972,-0.02657480351626873,-0.03867818042635918,0.04288804903626442,0.03223181515932083,-0.027232596650719643,0.0460454523563385,0.00019939325284212828,-0.06604233384132385,-0.08367116749286652,0.15892258286476135,0.03815194591879845,-0.010656232945621014,0.023285843431949615,-0.022233374416828156,-0.03867818042635918,0.19681142270565033,0.05420207604765892,0.06893661618232727,-0.010458895936608315,-0.01558967400342226,-0.052360255271196365,-0.042098697274923325,-0.08103999495506287,0.02407519333064556,0.052097138017416,-0.0763038918375969,0.053412724286317825,0.061043113470077515,-0.03841506317257881,-0.08103999495506287,0.061043113470077515,0.005097889341413975,-0.030521556735038757,0.010524674318730831,-0.03736259415745735,0.07262025773525238,-0.0868285670876503,0.034468308091163635,-0.013616298325359821,0.04815038666129112,-0.044203635305166245,0.0203915573656559,-0.03788882866501808,0.08524986356496811,0.02197025902569294,-0.0203915573656559,0.02354895882308483,-0.008485519327223301,-0.017497271299362183,0.02802194654941559,-0.06788415461778641,0.017365712672472,-0.045782335102558136,0.014142531901597977,-0.0399937629699707,-0.12313869595527649,0.1494503766298294,0.007071265950798988,-0.03223181515932083,-0.06367427855730057,-0.0799875259399414,-0.10787791758775711,0.05551765859127045,-0.036573246121406555,-0.031837139278650284,0.05104467272758484,0.032889608293771744,0.02354895882308483,0.0025489446707069874,-0.005459675099700689,-0.033942077308893204,0.02144402451813221,-0.07577765733003616,0.08735480159521103,-0.034468308091163635,-0.005196558311581612,-0.03815194591879845,0.01999688148498535,-0.08472362905740738,0.04841350391507149,0.02552233636379242,0.04788726940751076,0.07525142282247543,0.0036343017127364874,-0.12261246144771576,0.025127660483121872,0.017628829926252365,-0.08103999495506287,-0.16207998991012573,-0.06788415461778641,-0.050255320966243744,-0.0026640582364052534,0.06367427855730057,-0.08261869847774506,0.0022036037407815456,0.02749571204185486,-0.018549738451838493,-0.02249649167060852,0.07683012634515762,0.10472051054239273,-0.028285063803195953,0.04025688022375107,-0.0747251883149147,0.09261713922023773,-0.06998908519744873,-0.06998908519744873,0.08735480159521103,-0.13418960571289062,0.01019577868282795,-0.04920285567641258,-0.10156311094760895,0.04893973842263222,-0.11945505440235138,0.1162976548075676,-0.05262337252497673,-0.0799875259399414,-0.11682388931512833,0.05630701035261154,0.08261869847774506,-0.11892882734537125,0.003009399166330695,0.08524986356496811,0.01881285570561886,0.03420519456267357,0.03328428417444229,0.04999220371246338,0.027364153414964676,0.04446674883365631,-0.01203759666532278,0.05604389309883118,-0.016510583460330963,-0.09366960823535919,0.010524674318730831,-0.12103375792503357,-0.06498986482620239,0.0004727881168946624,0.08261869847774506,-0.10208934545516968,-0.012958506122231483,-0.028416622430086136,-0.028416622430086136,-0.03275804966688156,0.03973064571619034,-0.02854817919433117,-0.02749571204185486,-0.04288804903626442,-0.031837139278650284,-0.11261402070522308,-0.03683635964989662,0.0815662294626236,0.012958506122231483,0.051834024488925934,0.1441880464553833,-0.12892726063728333,0.033021166920661926,0.1441880464553833,-0.07367271929979324,0.011050908826291561,0.04157246649265289,0.07262025773525238,0.04999220371246338,-0.04867662116885185,-0.004637434612959623,-0.06998908519744873,-0.07104155421257019,-0.04788726940751076,0.019207531586289406,-0.1110353171825409,0.04025688022375107,-0.044203635305166245,-0.0747251883149147,0.011379804462194443,-0.10787791758775711,-0.03012688085436821,-0.029337530955672264,0.04157246649265289,0.03867818042635918,-0.08472362905740738,0.10366804897785187,-0.025390777736902237,0.029863763600587845,0.05893817916512489,-0.10051064193248749,-0.07262025773525238,-0.03223181515932083,-0.10208934545516968,-0.08261869847774506,0.0030751784797757864,0.017234154045581818]
}
}'
以上