-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmet_embeddings_batch_0_sample.json
More file actions
6936 lines (6936 loc) · 483 KB
/
met_embeddings_batch_0_sample.json
File metadata and controls
6936 lines (6936 loc) · 483 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"id": 199706,
"image_url": "https://images.metmuseum.org/CRDImages/es/web-large/DT812.jpg",
"embedding": [
0.1591796875, -0.0169525146484375, -0.33837890625, 0.031646728515625,
-0.07476806640625, 0.02716064453125, -0.349609375, 0.262939453125,
-0.79345703125, 0.044647216796875, -0.1820068359375, -0.31591796875,
-0.219482421875, -0.046234130859375, 0.1595458984375,
-0.01557159423828125, -0.3369140625, -0.2305908203125, 0.1905517578125,
0.1651611328125, 0.5546875, 0.1827392578125, 0.44921875, 0.8857421875,
0.28369140625, 0.62939453125, 0.21240234375, 0.206298828125,
0.23974609375, -0.04022216796875, 0.0989990234375, -0.18310546875,
-0.00617218017578125, -0.5166015625, -0.3583984375, -0.3466796875,
0.057952880859375, -0.2222900390625, 0.294921875, 0.62255859375,
0.357666015625, -0.10235595703125, 0.2265625, -0.330322265625,
0.650390625, -1.6591796875, -0.83203125, 0.050445556640625, 0.2958984375,
0.08441162109375, 0.2352294921875, -0.4873046875, -0.12548828125,
-0.0802001953125, -0.1644287109375, -0.00257110595703125, -0.393310546875,
0.0133819580078125, 0.09320068359375, -0.058685302734375, 0.6376953125,
-0.84765625, 0.1624755859375, 0.010955810546875, 0.05596923828125,
-0.010162353515625, -0.24365234375, -0.50634765625, -0.36083984375,
-0.278076171875, -0.364990234375, -0.337646484375, -0.3291015625,
0.036956787109375, -0.132568359375, 0.321044921875, 0.67626953125,
0.11651611328125, 0.45703125, 0.1951904296875, -0.0029850006103515625,
0.1328125, 0.41357421875, -0.35302734375, 0.07867431640625,
0.490966796875, -0.47607421875, 0.057159423828125, -0.11956787109375,
0.2156982421875, -0.2369384765625, 0.1630859375, -6.31640625,
0.61669921875, 0.03692626953125, 0.50439453125, 0.218017578125,
0.297119140625, 0.365234375, 0.54296875, 0.33935546875, 0.29443359375,
-0.35302734375, 0.036376953125, 0.8212890625, 0.1695556640625,
-0.99853515625, 0.1593017578125, -0.154296875, -0.062469482421875,
-0.229248046875, 0.595703125, 0.1463623046875, 0.08465576171875,
0.461181640625, -0.0306549072265625, 0.028594970703125, 0.4599609375,
0.275146484375, 0.48046875, 0.1507568359375, -0.77880859375,
-0.16455078125, 0.412109375, -0.427978515625, -0.45849609375,
-0.00662994384765625, 0.2294921875, 0.50927734375, 0.38134765625,
0.62109375, 0.140380859375, -0.372314453125, 0.77490234375,
0.03912353515625, -0.394287109375, -0.376708984375,
-0.0018835067749023438, 0.062469482421875, 0.341796875, 0.0390625,
0.05767822265625, -0.51611328125, 0.321044921875, -0.1334228515625,
-0.365478515625, 0.44873046875, 0.206787109375, -0.2110595703125,
-0.1295166015625, 0.380615234375, 0.045379638671875, -0.034088134765625,
0.338623046875, -0.131591796875, 0.0889892578125, 0.060791015625,
-0.14013671875, 0.00055694580078125, 0.197998046875, 0.255615234375,
0.146484375, -0.26123046875, 0.190185546875, 0.10198974609375,
0.51513671875, -0.1390380859375, -0.28173828125, -0.1669921875,
0.22216796875, 0.060150146484375, -0.31201171875, 0.10205078125,
0.2369384765625, 0.157470703125, -0.323974609375, -0.52197265625,
-0.03656005859375, 0.76611328125, 0.251220703125, -0.173583984375,
0.345458984375, 0.127197265625, -0.2276611328125, 0.132080078125,
0.073974609375, 0.148193359375, -0.111572265625, 0.1436767578125,
-0.1171875, -0.09259033203125, 0.5234375, 0.50732421875, 0.61669921875,
0.6005859375, 0.46484375, 0.1978759765625, 0.27490234375, -0.311279296875,
0.2034912109375, 0.3134765625, 0.62158203125, -0.211669921875,
-0.2120361328125, -0.06817626953125, 0.09417724609375, -0.11773681640625,
-0.263427734375, -0.53125, -0.171875, -0.72802734375, 0.814453125,
0.1182861328125, -0.09075927734375, 0.07171630859375, -0.237060546875,
0.05792236328125, -0.250732421875, -0.3916015625, 0.1842041015625,
0.1192626953125, 0.41259765625, -0.397216796875, -0.460205078125,
-0.028350830078125, -0.227294921875, -0.1436767578125, -0.251220703125,
-0.1778564453125, -0.08721923828125, -0.119873046875, 0.393798828125,
0.01192474365234375, -0.0277862548828125, -0.209716796875, 0.32568359375,
0.188232421875, -0.2041015625, -0.15380859375, -0.71484375,
-0.210205078125, 0.028900146484375, 0.1961669921875, 0.0202178955078125,
-0.3193359375, -0.129150390625, -0.2027587890625, -0.2432861328125,
0.173095703125, -0.27783203125, 0.184814453125, -0.63232421875,
0.0894775390625, 0.065185546875, 0.2493896484375, 0.06658935546875,
-0.607421875, 0.111083984375, 0.00201416015625, 0.0955810546875,
0.169677734375, 0.2135009765625, -0.2401123046875, -0.321533203125,
0.29296875, 0.1201171875, -0.386474609375, 0.16650390625, 0.144287109375,
0.03729248046875, 0.053619384765625, 0.300048828125, 0.298095703125,
0.2021484375, 0.0272216796875, -0.0191192626953125, 0.2022705078125,
0.2159423828125, 0.06353759765625, -0.6171875, -0.018585205078125,
0.2802734375, 0.7861328125, 0.159912109375, -0.1961669921875,
-0.0142364501953125, -0.72998046875, -0.258056640625, -0.388427734375,
-0.227783203125, 0.4794921875, -0.377197265625, 0.34033203125,
0.1451416015625, 0.44384765625, 0.10272216796875, -0.3427734375,
0.29150390625, 0.434326171875, 0.227294921875, 0.052459716796875,
-0.16015625, -0.4189453125, -0.2012939453125, -0.1434326171875,
-0.13330078125, -0.09783935546875, -0.1397705078125, 0.24560546875,
-0.281494140625, -0.1337890625, 0.0850830078125, 0.77197265625,
0.50341796875, 0.1522216796875, 0.48193359375, 0.006389617919921875,
0.234130859375, 0.33349609375, -0.748046875, -0.0186920166015625,
2.013671875, 0.04266357421875, -0.37890625, 0.017181396484375,
-0.42041015625, 0.021484375, 0.2479248046875, 0.2130126953125,
-0.0278167724609375, -0.1517333984375, 0.1925048828125, -0.100830078125,
0.01033782958984375, 0.1639404296875, 0.102294921875, 0.2578125,
0.35546875, 0.280517578125, -0.46142578125, -0.042266845703125,
-0.320556640625, 0.285400390625, 0.0941162109375, 0.482666015625,
-0.197509765625, 0.02655029296875, 0.6337890625, 0.2144775390625,
0.219970703125, -0.343505859375, 0.3984375, 0.2998046875, 0.2081298828125,
-0.07867431640625, 0.1046142578125, 0.06298828125, -1.4296875,
-0.0008444786071777344, -0.00923919677734375, -0.08709716796875,
0.204833984375, -0.041290283203125, -0.1973876953125, -1.3916015625,
-0.299072265625, -0.76416015625, 0.13720703125, 0.58935546875,
0.125244140625, 0.323486328125, -0.44580078125, -0.29248046875,
0.1697998046875, -0.1455078125, 0.04791259765625, 0.4189453125,
-0.35302734375, 0.428466796875, -0.1285400390625, 0.11859130859375,
-0.39697265625, -0.270263671875, -0.61572265625, 0.074462890625,
0.42626953125, 0.2186279296875, -0.08416748046875, 0.03826904296875,
1.9033203125, 0.60302734375, 0.52587890625, 0.48095703125, 0.202880859375,
0.194091796875, -0.149169921875, 0.217529296875, 0.05084228515625,
0.13232421875, -0.82275390625, 0.1290283203125, -0.043182373046875,
0.5234375, 0.0310821533203125, -0.09375, -0.25048828125,
-0.01210784912109375, 0.7001953125, 0.1649169921875, 0.277099609375,
-0.197998046875, -0.056304931640625, 0.07720947265625, -0.08026123046875,
-0.2607421875, -0.33203125, -0.100341796875, 0.158447265625,
0.12152099609375, -0.38330078125, -0.2012939453125, -0.4560546875,
-0.00855255126953125, 0.260498046875, 0.3251953125, -0.052734375,
0.232666015625, -0.07122802734375, 1.251953125, 0.381103515625,
0.433349609375, 0.345947265625, 1.2568359375, 0.372314453125,
0.1138916015625, 0.1378173828125, 0.145263671875, -0.338134765625,
-0.256591796875, -0.0171051025390625, -0.432373046875, 0.17236328125,
-0.142333984375, -0.0280303955078125, -0.0357666015625, -0.1588134765625,
0.2193603515625, -0.180908203125, 0.1072998046875, 0.03155517578125,
0.10321044921875, -0.2073974609375, 0.0234375, 0.6845703125, -0.146484375,
-0.284423828125, -0.39306640625, 0.301513671875, 0.52734375,
-0.020233154296875, 0.275390625, -0.17236328125, -0.016754150390625,
-0.07232666015625, 0.55322265625, 0.023529052734375, -0.32470703125,
-0.332763671875, -0.0308990478515625, 0.0699462890625, 0.1885986328125,
-0.20751953125, 0.06365966796875, 0.1396484375, -0.01055145263671875,
-0.035003662109375, 0.396728515625, -0.400146484375, -0.203857421875,
0.335693359375, 0.1669921875, -0.57421875, -0.34228515625, 0.90478515625,
0.58056640625, 0.5234375, 0.0364990234375, -0.06182861328125,
-0.1260986328125, -0.43310546875, -0.00021076202392578125, 0.482177734375,
0.027099609375, 0.1278076171875, -0.422119140625, 0.03955078125,
-0.036041259765625, 0.1629638671875, 0.1187744140625, 0.0537109375,
0.42333984375, 0.2462158203125, 0.1424560546875, 0.1544189453125,
0.1473388671875, -0.1302490234375, -0.39794921875, -0.032958984375,
0.173583984375, -0.2489013671875, -0.10272216796875, 0.039794921875
],
"text_fields": "Seasons and Elements (Summer) (set of four), classified as a Hanging. Made of Canvas; silk, wool, and metal-thread embroidery in tent stitch (316 stitches per sq. inch, 49 per sq. cm.), created around ca. 1683 during the . Associated with . Classification: Textiles-Embroidered. Created by Charles Le Brun (French, Paris 1619\u20131690 Paris). Credit: Rogers Fund, 1946. Tags: Birds, Garlands, Women, Crabs, Lions, Flowers, Summer",
"metadata": {
"title": "Seasons and Elements (Summer) (set of four)",
"medium": "Canvas; silk, wool, and metal-thread embroidery in tent stitch (316 stitches per sq. inch, 49 per sq. cm.)",
"object_url": ""
}
},
{
"id": 199707,
"image_url": "https://images.metmuseum.org/CRDImages/es/web-large/DT813.jpg",
"embedding": [
-0.01050567626953125, -0.07049560546875, -0.304931640625,
-0.1278076171875, -0.07525634765625, 0.1663818359375, -0.1998291015625,
0.231689453125, -0.53564453125, -0.185302734375, -0.288818359375,
-0.1541748046875, 0.080810546875, -0.352294921875, 0.1165771484375,
0.291015625, -0.123291015625, 0.19775390625, 0.01763916015625,
0.2158203125, 0.4658203125, 0.496826171875, 0.70654296875, 1.15234375,
0.388671875, 0.43798828125, 0.319580078125, 0.427001953125, 0.35888671875,
0.04132080078125, 0.040252685546875, -0.09375, 0.0765380859375,
-0.53662109375, -0.56396484375, -0.3349609375, 0.22900390625, 0.21875,
0.2493896484375, -0.18017578125, 0.2047119140625, -0.180908203125,
0.09954833984375, -0.1151123046875, 0.681640625, -1.08984375,
-0.76123046875, 0.22998046875, 0.1346435546875, 0.126708984375,
0.2398681640625, -0.4638671875, -0.09515380859375, -0.14990234375,
0.1781005859375, -0.04156494140625, -0.3388671875, -0.1611328125,
-0.02783203125, 0.1278076171875, 0.431396484375, -0.64306640625,
0.11474609375, 0.0268096923828125, -0.134521484375, -0.1072998046875,
-0.27392578125, -0.3369140625, -0.426513671875, -0.155029296875,
-0.57666015625, -0.460205078125, -0.2333984375, 0.067626953125,
-0.218505859375, 0.06988525390625, 0.50146484375, 0.152587890625,
0.1849365234375, 0.354248046875, 0.00519561767578125, 0.144775390625,
0.468017578125, -0.486083984375, 0.12274169921875, 0.46435546875,
-1.0966796875, -0.096435546875, 0.058929443359375, 0.0654296875,
-0.06292724609375, -0.0175323486328125, -6.25390625, 0.2388916015625,
0.4375, 0.07763671875, 0.056121826171875, 0.0137176513671875,
0.317138671875, 0.19580078125, 0.259765625, 0.28271484375, -0.517578125,
0.1484375, 0.58447265625, 0.06378173828125, -1.0537109375,
0.1619873046875, -0.220703125, -0.137939453125, 0.022735595703125,
0.51904296875, 0.3701171875, 0.1575927734375, 0.297119140625,
-0.393310546875, -0.1363525390625, 0.11846923828125, 0.027069091796875,
0.451416015625, 0.032379150390625, -0.484619140625, -0.296142578125,
0.2958984375, -0.544921875, 0.036468505859375, -0.0859375,
0.1351318359375, 0.272216796875, 0.329833984375, 0.7822265625,
-0.2203369140625, -0.363525390625, 0.80859375, 0.2484130859375,
-0.344482421875, -0.401123046875, 0.1104736328125, -0.04736328125,
0.271728515625, -0.193359375, 0.1495361328125, -0.408935546875,
0.10028076171875, -0.273681640625, -0.61083984375, 0.303466796875,
0.1939697265625, -0.063720703125, -0.16796875, 0.235107421875,
0.280029296875, -0.04180908203125, 0.48876953125, 0.10260009765625,
0.489990234375, -0.1605224609375, -0.028900146484375, -0.2205810546875,
0.0946044921875, -0.194580078125, 0.1204833984375, -0.277587890625,
0.34814453125, 0.04534912109375, 0.62158203125, 0.34423828125,
-0.1630859375, -0.238525390625, 0.183349609375, 0.5888671875,
-0.286376953125, 0.1258544921875, 0.27001953125, -0.164794921875,
-0.533203125, -0.6376953125, 0.135009765625, 0.58837890625,
0.09637451171875, -0.1307373046875, 0.396240234375, 0.29638671875,
-0.129638671875, 0.177978515625, 0.2021484375, 0.2393798828125,
0.278076171875, 0.11279296875, -0.3134765625, -0.084716796875,
0.634765625, 0.568359375, 0.56884765625, 0.5322265625, 0.422607421875,
-0.1409912109375, 0.151611328125, 0.07305908203125, 0.18603515625,
0.1400146484375, 0.5947265625, -0.0186767578125, -0.37841796875,
0.0309906005859375, -0.273193359375, -0.4111328125, -0.1519775390625,
-0.48095703125, -0.267333984375, -0.97705078125, 0.64892578125,
-0.1942138671875, 0.1275634765625, 0.1605224609375, -0.17578125,
-0.22265625, -0.341064453125, -0.7548828125, -0.005413055419921875,
-0.1494140625, 0.654296875, -0.06781005859375, -0.63818359375,
-0.09228515625, -0.32421875, 0.036773681640625, -0.27880859375,
0.10540771484375, 0.04498291015625, -0.0189666748046875, 0.50634765625,
0.10888671875, -0.304931640625, -0.143310546875, 0.11859130859375,
0.2490234375, -0.450927734375, -0.252685546875, -0.72705078125,
-0.2259521484375, 0.08544921875, -0.0853271484375, -0.177001953125,
-0.284912109375, 0.11553955078125, -0.03802490234375, -0.250244140625,
-0.164306640625, -0.11334228515625, -0.14404296875, -0.576171875,
0.2388916015625, -0.029296875, -0.080078125, 0.00592803955078125,
-0.275634765625, 0.263916015625, -0.181884765625, 0.001499176025390625,
0.26806640625, 0.137939453125, -0.006122589111328125, -0.217529296875,
0.25732421875, 0.042327880859375, -0.50830078125, 0.06494140625,
0.036376953125, -0.0005140304565429688, 0.1295166015625, 0.439208984375,
0.19140625, 0.228515625, -0.27001953125, 0.1356201171875, 0.1658935546875,
0.253662109375, 0.28515625, -0.414794921875, -0.255859375, 0.48046875,
0.9013671875, 0.11590576171875, -0.2493896484375, -0.057952880859375,
-1.3056640625, -0.356201171875, -0.11041259765625, -0.317626953125,
0.427978515625, -0.2166748046875, 0.55078125, 0.2371826171875, 0.25,
-0.06182861328125, -0.1815185546875, -0.1270751953125, 0.3740234375,
0.2474365234375, -0.34375, -0.18115234375, -0.54541015625,
-0.0382080078125, 0.12359619140625, -0.150634765625, -0.2197265625,
0.097412109375, 0.46875, -0.4716796875, -0.39208984375, 0.2257080078125,
0.80615234375, 0.3193359375, 0.2391357421875, 0.44580078125,
0.062255859375, 0.145263671875, 0.1483154296875, -0.6396484375,
0.259521484375, 1.4873046875, -0.00244903564453125, -0.310302734375,
0.0853271484375, -0.26025390625, -0.15625, 0.5400390625, 0.316650390625,
-0.150634765625, -0.01221466064453125, 0.008087158203125, 0.238037109375,
0.06549072265625, 0.27392578125, 0.154052734375, 0.466796875,
0.46044921875, 0.302978515625, -0.42724609375, -0.148193359375,
-0.5654296875, 0.301025390625, 0.0391845703125, 0.31005859375,
-0.3681640625, 0.1297607421875, 0.4921875, 0.387939453125,
0.11798095703125, -0.529296875, 0.0859375, 0.09039306640625,
0.058929443359375, -0.4619140625, 0.1551513671875, 0.08892822265625,
-1.6884765625, 0.09991455078125, -0.2169189453125, -0.054534912109375,
0.2052001953125, 0.147216796875, -0.6552734375, -1.505859375,
-0.202392578125, -0.5419921875, -0.01409912109375, 0.63232421875,
0.298828125, 0.295654296875, -0.58251953125, -0.32275390625,
0.127685546875, -0.06683349609375, 0.08721923828125, 0.1473388671875,
-0.0712890625, 0.4677734375, 0.01087188720703125, 0.1834716796875,
-0.285400390625, -0.18603515625, -0.68115234375, -0.2239990234375,
0.189453125, 0.366943359375, -0.2646484375, -0.147705078125, 1.28125,
0.47607421875, 0.43798828125, 0.4150390625, 0.2022705078125,
0.10687255859375, -0.1676025390625, 0.493896484375, 0.109130859375,
0.48095703125, -0.82421875, 0.3720703125, 0.0963134765625, 0.401611328125,
0.300537109375, -0.11578369140625, -0.259033203125, -0.1402587890625,
0.62255859375, 0.1710205078125, 0.3056640625, -0.327880859375,
-0.2239990234375, 0.1771240234375, -0.0701904296875, -0.252685546875,
-0.1187744140625, 0.176513671875, 0.1778564453125, 0.1654052734375,
-0.492919921875, -0.137451171875, -0.367431640625, -0.2257080078125,
0.255859375, 0.4638671875, -0.220703125, 0.431396484375,
-0.029998779296875, 1.5546875, 0.11572265625, 0.285888671875,
0.369384765625, 0.94580078125, 0.2529296875, 0.2222900390625, 0.15234375,
0.2440185546875, -0.1505126953125, -0.1981201171875, -0.49658203125,
-0.3388671875, 0.0390625, -0.450927734375, -0.111083984375,
0.00780487060546875, -0.263916015625, -0.151123046875, -0.15283203125,
0.1759033203125, -0.10333251953125, 0.1693115234375, 0.1683349609375,
0.0440673828125, 0.67138671875, -0.29296875, -0.2158203125,
-0.301513671875, 0.1641845703125, 0.318359375, 0.07843017578125,
0.123291015625, -0.16796875, -0.006183624267578125, -0.0595703125,
0.4560546875, -0.1832275390625, -0.374755859375, -0.28271484375,
0.1451416015625, 0.281982421875, 0.24267578125, -0.11663818359375,
0.36669921875, 0.11505126953125, -0.00577545166015625, -0.08624267578125,
0.1900634765625, -0.48681640625, -0.148681640625, 0.214599609375,
0.0775146484375, -0.50048828125, -0.33837890625, 0.615234375, 0.634765625,
0.77880859375, 0.251220703125, -0.10333251953125, -0.18505859375,
-0.10107421875, 0.1258544921875, 0.219970703125, -0.09814453125,
-0.00232696533203125, -0.391357421875, 0.14208984375, -0.039215087890625,
0.1427001953125, -0.02325439453125, 0.061737060546875, 0.65087890625,
0.23828125, -0.07757568359375, 0.10223388671875, -0.347412109375,
-0.045684814453125, -0.318359375, 0.00931549072265625, -0.042510986328125,
-0.344970703125, -0.11114501953125, 0.0198822021484375
],
"text_fields": "Seasons and Elements (Fire) (set of four), classified as a Hanging. Made of Canvas; silk, wool, and metal-thread embroidery in tent stitch (316 stitches per sq. inch, 49 per sq. cm.), created around ca. 1683 during the . Associated with . Classification: Textiles-Embroidered. Created by Charles Le Brun (French, Paris 1619\u20131690 Paris). Credit: Rogers Fund, 1946. Tags: Birds, Armor, Men, Fire",
"metadata": {
"title": "Seasons and Elements (Fire) (set of four)",
"medium": "Canvas; silk, wool, and metal-thread embroidery in tent stitch (316 stitches per sq. inch, 49 per sq. cm.)",
"object_url": ""
}
},
{
"id": 199705,
"image_url": "https://images.metmuseum.org/CRDImages/es/web-large/DT2184.jpg",
"embedding": [
0.151611328125, -0.07965087890625, -0.32080078125, 0.0222625732421875,
0.1676025390625, -0.06524658203125, -0.3017578125, 0.083984375,
-0.658203125, 0.0014410018920898438, -0.11883544921875, -0.2509765625,
-0.0276641845703125, -0.0762939453125, 0.239990234375, -0.12744140625,
-0.1279296875, -0.0111541748046875, 0.1572265625, 0.025390625,
0.64501953125, 0.29833984375, 0.39990234375, 1.0146484375, 0.27685546875,
0.48876953125, 0.053619384765625, 0.216796875, 0.315673828125,
-0.2197265625, 0.322021484375, 0.07373046875, -0.018463134765625,
-0.6318359375, -0.6689453125, -0.377197265625, 0.010498046875,
-0.275146484375, 0.271728515625, 0.69189453125, 0.252197265625,
-0.371826171875, 0.1068115234375, -0.320068359375, 0.73388671875,
-1.564453125, -0.7333984375, 0.179931640625, 0.1466064453125,
0.134521484375, 0.31787109375, -0.44970703125, -0.1376953125,
-0.2476806640625, -0.07159423828125, 0.1246337890625, -0.43505859375,
-0.166259765625, 0.031402587890625, -0.0247802734375, 0.51513671875,
-0.61669921875, 0.2257080078125, 0.1279296875, -0.0792236328125,
-0.10162353515625, -0.2467041015625, -0.5634765625, -0.342041015625,
-0.2442626953125, -0.3837890625, -0.3173828125, -0.40869140625,
0.2122802734375, 0.048126220703125, 0.28173828125, 0.483154296875,
0.1068115234375, 0.35009765625, 0.056365966796875, 0.158203125,
0.2318115234375, 0.4130859375, -0.2237548828125, 0.1209716796875,
0.58740234375, -0.52099609375, -0.115234375, -0.2239990234375,
0.20947265625, -0.215576171875, 0.0021877288818359375, -6.19921875,
0.429443359375, 0.040252685546875, 0.45751953125, 0.080322265625,
0.2900390625, 0.32421875, 0.339599609375, 0.290771484375, 0.36767578125,
-0.340576171875, 0.221923828125, 0.85302734375, 0.161865234375,
-1.0361328125, 0.17919921875, -0.093994140625, -0.0865478515625,
-0.11651611328125, 0.394775390625, 0.303466796875, -0.0298309326171875,
0.482666015625, -0.27197265625, 0.07904052734375, 0.5966796875,
0.175048828125, 0.383056640625, 0.21337890625, -0.689453125,
0.018768310546875, 0.322265625, -0.368896484375, -0.4072265625,
0.07452392578125, 0.2230224609375, 0.223876953125, 0.28125, 0.68359375,
-0.083984375, -0.35009765625, 0.775390625, 0.0012693405151367188,
-0.333740234375, -0.499755859375, 0.197509765625, 0.0743408203125,
0.33203125, 0.0300140380859375, 0.169921875, -0.51904296875,
0.26318359375, -0.2271728515625, -0.47412109375, 0.59765625,
-0.0293426513671875, -0.2177734375, 0.10321044921875, 0.52197265625,
0.117919921875, 0.097900390625, 0.40283203125, -0.0234375,
0.0280914306640625, -0.1456298828125, -0.036529541015625, 0.0079345703125,
0.08477783203125, 0.007030487060546875, 0.08123779296875, -0.142822265625,
0.08660888671875, -0.08123779296875, 0.6083984375, 0.255615234375,
-0.1988525390625, -0.12322998046875, 0.0007109642028808594, 0.32421875,
-0.51708984375, 0.1728515625, 0.10113525390625, 0.1275634765625,
-0.360595703125, -0.485107421875, 0.0399169921875, 0.85302734375,
0.0845947265625, -0.074951171875, 0.26611328125, -0.0765380859375,
-0.2469482421875, 0.144287109375, 0.0638427734375, 0.06097412109375,
-0.03070068359375, 0.1627197265625, 0.156494140625, 0.14794921875,
0.332763671875, 0.5634765625, 0.65869140625, 0.486083984375,
0.252685546875, 0.11431884765625, 0.140869140625, -0.253662109375,
0.164794921875, 0.231689453125, 0.67333984375, -0.369384765625,
-0.25634765625, -0.1353759765625, 0.1416015625, -0.25830078125,
-0.1954345703125, -0.5107421875, -0.0229034423828125, -0.75927734375,
0.84814453125, -0.02947998046875, -0.047637939453125, 0.172119140625,
-0.313720703125, -0.06646728515625, -0.252197265625, -0.344970703125,
0.1380615234375, 0.013214111328125, 0.338623046875, -0.3310546875,
-0.6279296875, 0.19091796875, -0.294921875, -0.037628173828125, -0.5,
0.11236572265625, -0.1473388671875, -0.060882568359375, 0.51220703125,
0.1309814453125, -0.2469482421875, -0.323486328125, 0.2418212890625,
0.364013671875, -0.401611328125, -0.16015625, -0.64404296875,
-0.1597900390625, 0.035003662109375, 0.0533447265625, 0.027801513671875,
-0.39013671875, -0.2037353515625, -0.09478759765625, -0.259765625,
-0.15380859375, -0.2900390625, 0.20556640625, -0.52734375, 0.03759765625,
0.203857421875, 0.156494140625, 0.154541015625, -0.53466796875,
-0.038818359375, -0.2056884765625, 0.06536865234375, 0.06982421875,
0.21533203125, -0.044036865234375, -0.2061767578125, 0.33642578125,
-0.060302734375, -0.55029296875, 0.07696533203125, 0.09075927734375,
0.10308837890625, -0.0286102294921875, 0.0926513671875, 0.48828125,
0.055084228515625, -0.050018310546875, -0.035064697265625,
0.12481689453125, 0.03302001953125, 0.1697998046875, -0.51904296875,
0.01332855224609375, 0.3505859375, 0.85302734375, 0.267822265625,
-0.246826171875, 0.001811981201171875, -0.7470703125, -0.2205810546875,
-0.30078125, -0.32470703125, 0.369384765625, -0.255859375, 0.289306640625,
0.251220703125, 0.20654296875, 0.12890625, -0.56103515625,
0.08404541015625, 0.6376953125, 0.12493896484375, -0.1182861328125,
-0.08984375, -0.3720703125, -0.1265869140625, -0.14990234375,
-0.314208984375, -0.1585693359375, 0.09283447265625, 0.411376953125,
-0.433349609375, -0.36181640625, 0.297607421875, 0.7724609375,
0.5712890625, -0.012359619140625, 0.595703125, 0.03057861328125,
0.125732421875, 0.138671875, -0.6982421875, 0.2462158203125, 1.99609375,
0.038970947265625, -0.37744140625, 0.0909423828125, -0.5146484375,
0.09869384765625, 0.1776123046875, -0.0227813720703125, -0.07611083984375,
-0.2509765625, 0.152587890625, 0.0548095703125, 0.041015625, 0.263671875,
0.1510009765625, 0.2548828125, 0.325927734375, 0.365234375,
-0.473876953125, 0.06793212890625, -0.41650390625, 0.51171875,
0.15380859375, 0.39892578125, -0.25732421875, 0.1243896484375,
0.33251953125, 0.07470703125, 0.051300048828125, -0.2484130859375,
0.47265625, 0.3408203125, 0.1566162109375, -0.405517578125,
0.06475830078125, 0.11297607421875, -1.373046875, -0.0633544921875,
-0.006305694580078125, 0.02117919921875, 0.134765625, 0.05584716796875,
-0.41796875, -1.5888671875, -0.323486328125, -0.73828125, 0.25634765625,
0.544921875, 0.313232421875, 0.419677734375, -0.408935546875,
-0.0281829833984375, 0.193359375, -0.15380859375, -0.06524658203125,
0.63916015625, -0.2156982421875, 0.47021484375, -0.300048828125,
0.0096435546875, -0.5244140625, -0.09912109375, -0.486083984375,
-0.01117706298828125, 0.459228515625, 0.20458984375, -0.1209716796875,
-0.08721923828125, 1.6572265625, 0.736328125, 0.59814453125,
0.480224609375, 0.1676025390625, 0.161376953125, -0.0882568359375,
0.1739501953125, 0.100341796875, 0.2322998046875, -0.7744140625,
0.0261077880859375, 0.1357421875, 0.70263671875, 0.03631591796875,
-0.1129150390625, -0.2047119140625, 0.18896484375, 0.484375,
0.346923828125, 0.134765625, -0.1864013671875, 0.150390625,
0.0894775390625, -0.0146636962890625, -0.3427734375, -0.1915283203125,
-0.25537109375, 0.1885986328125, -0.0843505859375, -0.430908203125,
-0.15576171875, -0.499267578125, 0.058624267578125, 0.53857421875,
0.172119140625, -0.09930419921875, 0.35107421875, -0.239501953125,
1.5654296875, 0.034423828125, 0.31689453125, 0.2109375, 1.33203125,
0.11981201171875, 0.170166015625, -0.052093505859375, 0.146240234375,
-0.1806640625, -0.2337646484375, -0.1265869140625, -0.3095703125,
0.1302490234375, -0.364990234375, 0.03717041015625, -0.06597900390625,
-0.0826416015625, 0.052520751953125, -0.19775390625, 0.267333984375,
0.2471923828125, 0.040740966796875, -0.114990234375, -0.05255126953125,
0.685546875, -0.052642822265625, -0.360107421875, -0.320068359375,
0.27490234375, 0.468017578125, -0.0787353515625, 0.43701171875,
-0.2978515625, 0.016143798828125, -0.049163818359375, 0.4189453125,
-0.10260009765625, -0.3310546875, -0.303955078125, -0.11279296875,
-0.039825439453125, -0.0709228515625, -0.2265625, 0.341064453125,
0.103271484375, -0.11859130859375, -0.0523681640625, 0.279541015625,
-0.446044921875, -0.032958984375, 0.332275390625, -0.00615692138671875,
-0.5595703125, -0.33837890625, 0.7880859375, 0.6611328125, 0.54541015625,
0.181396484375, -0.141357421875, -0.20849609375, -0.49951171875,
0.01035308837890625, 0.471923828125, -0.0245513916015625, 0.1199951171875,
-0.443115234375, 0.25146484375, 0.116943359375, 0.2440185546875,
0.001743316650390625, 0.11962890625, 0.2476806640625, 0.11297607421875,
0.059234619140625, 0.0875244140625, 0.1561279296875, -0.0085296630859375,
-0.361328125, -0.0229339599609375, -0.08245849609375, -0.1142578125,
-0.350830078125, -0.280517578125
],
"text_fields": "Seasons and Elements (Spring) (set of four), classified as a Hanging. Made of Canvas; silk, wool, and metal-thread embroidery in tent stitch (316 stitches per sq. inch, 49 per sq. cm.), created around ca. 1683 during the . Associated with . Classification: Textiles-Embroidered. Created by Charles Le Brun (French, Paris 1619\u20131690 Paris). Credit: Rogers Fund, 1946. Tags: Birds, Fruit, Women, Insects, Sheep, Flowers, Roses, Tulips, Spring",
"metadata": {
"title": "Seasons and Elements (Spring) (set of four)",
"medium": "Canvas; silk, wool, and metal-thread embroidery in tent stitch (316 stitches per sq. inch, 49 per sq. cm.)",
"object_url": ""
}
},
{
"id": 199313,
"image_url": "https://images.metmuseum.org/CRDImages/es/web-large/DP-25866-001.jpg",
"embedding": [
-0.376708984375, 0.27880859375, 0.0338134765625, 0.125732421875,
-0.01030731201171875, -0.084716796875, -0.2041015625, 0.1951904296875,
-0.408935546875, -0.0031223297119140625, -0.3115234375, -0.380615234375,
0.38818359375, 0.5009765625, 0.04205322265625, -0.5224609375,
-0.1416015625, -0.101806640625, 0.452392578125, -0.061279296875,
0.6005859375, 0.390380859375, -0.1795654296875, 0.1693115234375,
0.398681640625, 0.2001953125, -0.1015625, -0.297119140625,
-0.123779296875, 0.01500701904296875, 0.5634765625, 0.242919921875,
0.10498046875, -0.6484375, -0.416259765625, 0.17724609375, -0.595703125,
0.08807373046875, 0.048126220703125, 1.2890625, 0.330810546875,
-0.39111328125, 0.54541015625, -0.1953125, 1.0830078125, -0.47412109375,
-0.8505859375, 0.344482421875, 0.7548828125, -0.040924072265625,
0.1502685546875, -0.08966064453125, -0.036102294921875, -0.106689453125,
-0.179931640625, 0.2301025390625, -0.1700439453125, -0.057159423828125,
-0.383056640625, -0.040313720703125, 0.8095703125, -0.26025390625,
0.34423828125, -0.265625, -0.254638671875, -0.353759765625,
0.2010498046875, -0.5927734375, -0.08135986328125, -0.0833740234375,
0.055328369140625, 0.163330078125, -0.1993408203125, -0.4296875,
-0.1080322265625, 0.13916015625, 0.436767578125, -0.425537109375,
0.1339111328125, -0.344482421875, -0.12109375, -0.1871337890625,
0.54248046875, -0.1876220703125, 0.5947265625, 0.62548828125,
-0.2452392578125, -0.2420654296875, -0.288818359375, 0.183349609375,
0.26611328125, 0.2386474609375, -5.15234375, 0.271728515625,
0.1639404296875, 0.41943359375, 0.2215576171875, -0.041473388671875,
0.564453125, 0.86669921875, 0.322265625, 0.267333984375, -0.2354736328125,
0.09173583984375, 0.91552734375, 0.098876953125, -1.560546875,
0.0355224609375, -0.0665283203125, 0.1485595703125, -0.7021484375,
0.07763671875, -0.2220458984375, -0.2127685546875, 0.292724609375,
-0.416748046875, -0.0645751953125, 0.25634765625, 0.09906005859375,
0.086669921875, 0.474365234375, -0.410888671875, 0.095947265625,
-0.204833984375, -0.2174072265625, -0.64453125, 0.351806640625,
0.11456298828125, -0.1385498046875, 0.1441650390625, 0.69873046875,
-0.2293701171875, 0.06341552734375, 0.75244140625, 0.128173828125,
-0.4208984375, -0.68701171875, 0.5537109375, -0.046142578125,
0.04498291015625, 0.0836181640625, 0.3798828125, -0.4677734375,
0.2178955078125, -0.0062408447265625, 0.1768798828125, 0.37451171875,
0.2296142578125, -0.12347412109375, 0.341796875, 0.384765625,
0.06951904296875, -0.005374908447265625, 0.3759765625,
-0.0011129379272460938, 0.01181793212890625, -0.556640625,
-0.1654052734375, -0.1739501953125, 0.339599609375, -0.156494140625,
-0.058013916015625, -0.2296142578125, 0.002223968505859375,
0.418212890625, 0.364501953125, 0.491455078125, 0.341796875,
-0.357177734375, 0.29345703125, -0.020904541015625, -0.261962890625,
0.119384765625, -0.2269287109375, -0.419189453125, 0.0260162353515625,
-0.0648193359375, -0.311279296875, 1.3369140625, 0.1737060546875,
-0.08563232421875, 0.36328125, 0.22021484375, 0.1385498046875,
-0.423583984375, -0.09808349609375, 0.01503753662109375,
-0.001300811767578125, 0.2490234375, 0.026214599609375, 0.08563232421875,
0.32763671875, 0.2005615234375, 0.0232696533203125, 0.0550537109375,
0.0447998046875, 0.5224609375, -0.1407470703125, -0.77880859375,
-0.304443359375, 0.23828125, 0.234375, -0.006622314453125,
-0.064697265625, 0.181396484375, -0.072265625, -0.07452392578125,
0.06915283203125, -0.031707763671875, -0.124267578125, -0.53466796875,
0.85546875, 0.0303192138671875, -0.223388671875, -0.134033203125,
0.06878662109375, 0.513671875, -0.07550048828125, -0.47802734375,
0.316162109375, -0.03955078125, 0.76513671875, 0.1429443359375,
0.034454345703125, -0.271484375, 0.06573486328125, 0.1439208984375,
-0.4912109375, 0.115234375, 0.1494140625, -0.26416015625, 0.237548828125,
0.5166015625, -0.293212890625, 0.108154296875, -0.0506591796875,
0.208984375, -0.047515869140625, 0.07720947265625, -0.490966796875,
-0.073486328125, -0.0821533203125, 0.529296875, -0.69482421875,
-0.46240234375, 0.058807373046875, 0.021575927734375, -0.323486328125,
-0.32177734375, 0.04278564453125, 0.1859130859375, -0.1168212890625,
0.2626953125, -0.0936279296875, 0.1881103515625, 0.59716796875,
-0.42724609375, -0.037628173828125, -0.059539794921875, 0.332763671875,
-0.1888427734375, 0.0017518997192382812, 0.0762939453125, -0.57421875,
0.451171875, -0.119873046875, -0.111572265625, -0.03961181640625,
-0.06219482421875, 0.42724609375, 0.022857666015625, 0.1634521484375,
0.6533203125, 0.2366943359375, 0.2178955078125, 0.2037353515625,
-0.08050537109375, -0.061126708984375, 0.13037109375, -0.62744140625,
-0.0677490234375, -0.30517578125, 0.412841796875, 0.17822265625,
-0.082763671875, 0.306884765625, -1.25, -0.6630859375, -0.120361328125,
-0.19482421875, 0.31982421875, -0.0382080078125, 0.187744140625,
0.12420654296875, -0.2421875, 0.07794189453125, -0.2337646484375,
-0.12286376953125, 0.233642578125, 0.1571044921875, -0.217041015625,
-0.3837890625, -0.118408203125, -0.19091796875, 0.517578125, -0.576171875,
0.30419921875, 0.4306640625, 0.381103515625, -0.3955078125, -0.5732421875,
0.08807373046875, 0.75, 0.043701171875, 0.020416259765625, 0.462890625,
0.1910400390625, -0.2388916015625, 0.049774169921875, -0.58544921875,
0.1865234375, 0.25439453125, 0.04962158203125, -0.227783203125,
-0.2225341796875, -0.1854248046875, 0.207763671875, -0.0173492431640625,
0.2052001953125, -0.160888671875, -0.299560546875, -0.16259765625,
-0.11358642578125, -0.182373046875, 0.3642578125, -0.359619140625,
0.088134765625, 0.236328125, 0.343017578125, -0.067138671875,
0.170166015625, 0.0160675048828125, -0.059906005859375, -0.297607421875,
-0.286865234375, -0.53857421875, 0.1326904296875, 0.447998046875,
-0.337646484375, -0.03997802734375, -0.1697998046875, -0.2462158203125,
0.404052734375, -0.406982421875, -0.250244140625, 0.181396484375,
0.0037517547607421875, -1.322265625, 0.06878662109375, 0.451416015625,
0.26806640625, -0.191650390625, 0.169921875, -0.177490234375,
-1.2978515625, 0.1845703125, -0.2308349609375, -0.52734375, 0.3359375,
-0.253173828125, 0.42041015625, -0.211669921875, -0.10601806640625,
-0.041778564453125, 0.1055908203125, -0.0189666748046875, 0.7490234375,
0.2376708984375, 0.43994140625, 0.1256103515625, 0.45947265625,
-0.321044921875, -0.212646484375, -0.293701171875, -0.11053466796875,
-0.042694091796875, 0.277587890625, 0.114501953125, -0.00603485107421875,
1.74609375, 0.72509765625, -0.099609375, 0.367431640625, 0.385986328125,
0.053192138671875, -0.339111328125, -0.296630859375, -0.2391357421875,
0.708984375, -0.962890625, -0.43017578125, 0.024139404296875,
0.039764404296875, -0.393798828125, -0.199462890625, -0.0921630859375,
-0.285888671875, 0.80908203125, 0.270263671875, -0.2384033203125,
-0.892578125, 0.0887451171875, 0.1285400390625, -0.06219482421875,
-0.16162109375, -0.0899658203125, -0.32763671875, -0.2320556640625,
-0.52197265625, -0.216064453125, 0.048797607421875, -0.11724853515625,
0.37744140625, 0.5126953125, -0.033599853515625, 0.055999755859375,
0.187744140625, -0.685546875, 0.386962890625, -0.2203369140625,
-0.0269775390625, 0.452880859375, 1.7392578125, -0.209228515625,
-0.1585693359375, 0.53076171875, 0.333984375, -0.2032470703125,
-0.2861328125, -0.15087890625, -0.0018291473388671875, 0.19775390625,
-0.53125, 0.41552734375, 0.017852783203125, 0.1158447265625,
-0.016815185546875, 0.108642578125, 0.35205078125, 0.13818359375,
0.04876708984375, 0.142822265625, 0.1646728515625, 0.61083984375,
-0.23828125, 0.2587890625, -0.052825927734375, 0.1397705078125,
-0.09619140625, -0.046356201171875, -0.1085205078125, -0.305908203125,
0.088623046875, -0.190185546875, 0.66455078125, -0.173583984375,
0.0216522216796875, 0.2469482421875, -0.148193359375, -0.05279541015625,
0.340576171875, -0.31103515625, -0.281982421875, -0.0157623291015625,
0.385009765625, -0.49365234375, 0.280517578125, -0.182373046875,
0.23779296875, -0.052276611328125, 0.0714111328125, -0.51708984375,
0.033203125, 0.29296875, 0.391357421875, 0.0018482208251953125,
-0.051422119140625, -0.1524658203125, -0.25341796875, -0.53125,
0.27490234375, 0.41015625, 0.294189453125, -0.646484375, -0.135498046875,
0.5498046875, 0.681640625, 0.2440185546875, 0.1519775390625,
0.047393798828125, 0.064697265625, -0.044891357421875, -0.09716796875,
-0.223388671875, 0.06011962890625, -0.1400146484375, -0.392822265625,
-0.01255035400390625, 0.05535888671875, 0.2047119140625, -0.262451171875,
0.260009765625
],
"text_fields": "Portrait of Napoleon I, classified as a Tapestry. Made of Wool, silk, silver-gilt thread (26-28 warps per inch, 10-12 per cm.); gilded pine frame, created around designed 1805, woven 1808\u201311 during the . Associated with . Classification: Textiles-Tapestries. Created by baron Fran\u00e7ois G\u00e9rard (French, Rome 1770\u20131837 Paris). Credit: Purchase, Joseph Pulitzer Bequest, 1943. Tags: Napoleon I, Men, Portraits",
"metadata": {
"title": "Portrait of Napoleon I",
"medium": "Wool, silk, silver-gilt thread (26-28 warps per inch, 10-12 per cm.); gilded pine frame",
"object_url": ""
}
},
{
"id": 209329,
"image_url": "https://images.metmuseum.org/CRDImages/es/web-large/DP341255.jpg",
"embedding": [
0.143798828125, 0.1156005859375, -0.10235595703125, -0.269287109375,
0.25048828125, 0.304931640625, -0.184326171875, -0.06298828125,
-0.194580078125, -0.253173828125, 0.0618896484375, -0.44970703125,
-0.435546875, -0.003047943115234375, 0.380126953125, -0.45166015625,
-0.72265625, -0.315673828125, 0.11761474609375, 0.0556640625, 0.521484375,
0.1195068359375, 0.4794921875, 0.3701171875, 0.266357421875,
0.373779296875, 0.1409912109375, -0.348388671875, -0.311767578125,
0.00891876220703125, 0.3349609375, 0.30615234375, 0.055999755859375,
-0.1710205078125, -0.51806640625, -0.1527099609375, -0.4189453125,
0.002109527587890625, -0.0101165771484375, 1.748046875, 0.1533203125,
-0.44384765625, -0.140625, -0.1317138671875, 0.58984375, -2.212890625,
-0.34375, 0.1925048828125, 0.0030345916748046875, -0.06463623046875,
0.334716796875, 0.21240234375, -0.2442626953125, 0.1083984375,
-0.235107421875, 0.372802734375, 0.06414794921875, -0.28125, -0.14453125,
0.1304931640625, -0.264404296875, -0.9296875, 0.55517578125,
0.299072265625, -0.26220703125, -0.1219482421875, 0.2081298828125,
-0.48876953125, -0.016815185546875, 0.0222625732421875, -0.16552734375,
0.09197998046875, -0.1885986328125, 0.0297088623046875, -0.1513671875,
0.404052734375, 0.1993408203125, -0.377197265625, 0.56689453125,
0.18310546875, 0.10894775390625, 0.193359375, -0.201904296875,
0.369384765625, 0.01080322265625, 0.187255859375, -0.1448974609375,
-0.1043701171875, -0.496337890625, 0.0799560546875, 0.11676025390625,
0.17236328125, -5.87109375, 0.66015625, -0.1710205078125, 0.4833984375,
-0.1259765625, 0.27783203125, 0.295654296875, 0.140869140625,
0.167724609375, 0.1683349609375, -0.58056640625, 0.28515625, 1.2939453125,
0.32421875, -1.0419921875, -0.1307373046875, -0.08502197265625,
0.36376953125, -0.279541015625, -0.203125, 0.11505126953125,
-0.1260986328125, 0.167724609375, -0.00841522216796875, 0.625,
0.57275390625, 0.369873046875, 0.5625, -0.041015625, -0.04498291015625,
0.20654296875, 0.195068359375, -0.203857421875, -0.482666015625,
-0.11431884765625, 0.0582275390625, -0.1385498046875, 0.06695556640625,
0.34814453125, -0.0274505615234375, 0.05523681640625, 0.7587890625,
0.34716796875, 0.055084228515625, 0.01477813720703125, 0.310791015625,
0.1309814453125, 0.1876220703125, 0.1724853515625, -0.015716552734375,
0.1195068359375, 0.541015625, 0.30126953125, -0.2138671875, 0.34423828125,
-0.513671875, 0.004329681396484375, -0.11004638671875, 0.39990234375,
0.25146484375, 1.150390625, 0.10809326171875, 0.10113525390625,
-0.5029296875, -0.44921875, -0.3828125, 0.33447265625, 0.050872802734375,
-0.1602783203125, -0.111083984375, -0.58544921875, 0.084716796875,
0.0732421875, 0.5634765625, 0.6533203125, -0.057525634765625,
-0.107421875, -0.373779296875, -0.01727294921875, -0.1800537109375,
-0.055908203125, 0.0694580078125, -0.1754150390625, 0.1763916015625,
-0.2032470703125, 0.058990478515625, 0.1480712890625, 0.07269287109375,
0.0916748046875, -0.040069580078125, 0.0799560546875, -0.0645751953125,
-0.2149658203125, 0.491455078125, 0.002227783203125, -0.34521484375,
0.10125732421875, 0.08258056640625, -0.046875, 0.0191650390625,
0.467529296875, 0.24267578125, -0.1951904296875, 0.3359375, 0.79541015625,
0.380859375, -0.88623046875, 0.301025390625, 0.411376953125, 0.33984375,
-0.1649169921875, 0.053070068359375, 0.312255859375, 0.1068115234375,
-0.1820068359375, -0.2044677734375, -0.039459228515625, -0.05596923828125,
-0.591796875, 0.329833984375, 0.1790771484375, -0.2327880859375,
-0.0259552001953125, -0.476318359375, -0.032379150390625, 0.1663818359375,
-0.3232421875, 0.1502685546875, -0.041748046875, 0.982421875,
-0.0305938720703125, -0.237060546875, 0.1575927734375, -0.174072265625,
0.336669921875, -0.1866455078125, -0.443603515625, 0.049652099609375,
-0.069580078125, 0.10107421875, 0.1015625, 0.3369140625,
-0.06256103515625, 0.36181640625, 0.279541015625, -0.1873779296875,
-0.4873046875, -0.421630859375, 0.28759765625, -0.043792724609375,
0.190673828125, -0.732421875, -0.5732421875, 0.6943359375,
-0.07757568359375, -0.37548828125, -0.11846923828125, -0.3046875,
0.203369140625, 0.1033935546875, 0.2459716796875, 0.230712890625,
-0.223876953125, 0.292236328125, -0.63232421875, -0.02679443359375,
-0.48291015625, -0.36572265625, -0.51220703125, 0.41357421875,
-0.260009765625, 0.93994140625, 0.00286102294921875, -0.439697265625,
-0.277587890625, 0.20458984375, 0.01053619384765625, -0.0267486572265625,
0.2529296875, 0.04962158203125, 0.1865234375, -0.078125, -0.34619140625,
-0.0237579345703125, 0.0877685546875, -0.03546142578125, 0.0458984375,
-0.2279052734375, 0.487548828125, -0.26611328125, 0.60205078125,
0.332763671875, 0.04498291015625, 0.53271484375, -0.5966796875,
0.0171051025390625, -0.82861328125, -0.08843994140625, 0.4130859375,
0.06353759765625, 0.426025390625, 0.3564453125, -0.1883544921875,
0.035125732421875, -0.09027099609375, 0.1861572265625, 0.265869140625,
0.50927734375, -0.439697265625, -0.296875, -0.342529296875, 0.28173828125,
0.66650390625, -0.81103515625, 0.007488250732421875, -0.295166015625,
0.364990234375, 0.073486328125, -0.12420654296875, 0.351318359375,
0.755859375, 0.1878662109375, 0.324951171875, 0.2578125, 0.95166015625,
0.256103515625, 0.20751953125, -0.358154296875, 0.08306884765625,
0.7119140625, 0.1134033203125, -0.57666015625, 0.0804443359375,
-0.442138671875, 0.5048828125, -0.238525390625, 0.1702880859375,
-0.338134765625, -0.3828125, -0.213623046875, 0.03204345703125,
-0.2271728515625, -0.1624755859375, 0.180908203125, 0.01424407958984375,
0.466552734375, 0.478271484375, -0.34716796875, 0.237060546875,
-0.293212890625, -0.2198486328125, 0.30615234375, 0.3193359375,
-0.3056640625, -0.090576171875, 0.313720703125, 0.046905517578125,
0.0833740234375, 0.40478515625, -0.271484375, -0.126953125,
0.028350830078125, 0.14697265625, -0.52734375, -0.008087158203125,
-0.70068359375, -0.24462890625, 0.01519012451171875, -0.736328125,
0.06378173828125, -0.28076171875, 0.5927734375, -0.78076171875,
-0.222412109375, -0.287109375, -0.51513671875, 0.712890625,
0.0504150390625, 0.315185546875, -0.369873046875, -0.035186767578125,
-0.34912109375, -0.1844482421875, 0.07476806640625, 1.0185546875,
-0.388671875, 0.341064453125, 0.6962890625, 0.05810546875, -0.85498046875,
-0.2215576171875, -0.1617431640625, -0.0033397674560546875, -0.3134765625,
0.2010498046875, 0.2105712890625, 0.55712890625, 1.7998046875,
0.23779296875, 0.5634765625, -0.0838623046875, 0.24169921875,
-0.165771484375, -0.254150390625, 0.0911865234375, -0.1656494140625,
0.201904296875, -0.283203125, -0.0936279296875, -0.147705078125,
0.865234375, -0.1180419921875, -0.053253173828125, -0.09136962890625,
-0.32080078125, 0.388671875, 0.250732421875, 0.00390625, -0.298095703125,
0.038177490234375, 0.2232666015625, 0.0745849609375, -0.29833984375,
0.06829833984375, -0.07330322265625, 0.163330078125, -0.442138671875,
-0.1527099609375, 0.02691650390625, -0.466064453125, 0.5703125, 0.390625,
-0.1400146484375, -0.10498046875, -0.1331787109375, 0.404296875,
-0.0533447265625, -0.01519012451171875, 0.1549072265625, 0.34130859375,
1.5830078125, -0.18505859375, 0.391357421875, 0.221435546875,
-0.00624847412109375, -0.10931396484375, 0.03253173828125,
-0.0762939453125, -0.0948486328125, 0.336669921875, 0.1455078125,
0.2166748046875, 0.0902099609375, 0.0643310546875, -0.1529541015625,
-0.272705078125, 0.10760498046875, -0.6142578125, -0.0439453125,
-0.2222900390625, 0.1629638671875, 0.491455078125, 0.06268310546875,
-0.318115234375, 0.1949462890625, 0.57421875, 0.030426025390625,
0.0294952392578125, -0.138916015625, 0.043609619140625, 0.1923828125,
0.051422119140625, 0.4697265625, 0.08074951171875, -0.41357421875,
-0.39453125, -0.309814453125, -0.262939453125, 0.1910400390625,
0.2374267578125, -0.116455078125, -0.58984375, 0.09375, -0.0943603515625,
0.1654052734375, 0.013763427734375, -0.442138671875, -0.1778564453125,
-0.0244293212890625, -0.60693359375, 0.382568359375, 0.5, 0.658203125,
0.337890625, 0.148193359375, -0.254638671875, 0.037841796875,
-0.59814453125, 0.07244873046875, 0.01045989990234375, 0.2257080078125,
-0.58349609375, -0.464111328125, -0.051849365234375, 0.2071533203125,
-0.474609375, -0.2332763671875, 0.288818359375, 0.2357177734375,
-0.1962890625, -0.1585693359375, 0.127197265625, 0.304931640625,
-0.11834716796875, -0.319580078125, -0.06005859375, -0.2030029296875,
0.15185546875, -0.345458984375, -0.038604736328125
],
"text_fields": "Tapestry Room from Croome Court, classified as a Period room. Made of Plaster, pine, mahogany, bronze-gilt, marble, lapis lazuli, steel; wool and silk (22-24 warps per inch, 9-10 per centimeter), created around 1763\u201371 during the . Associated with . Classification: Textiles-Tapestries. Created by Robert Adam (British, Kirkcaldy, Scotland 1728\u20131792 London). Credit: Gift of Samuel H. Kress Foundation, 1958. Tags: Birds, Men, Women, Putti, Flowers",
"metadata": {
"title": "Tapestry Room from Croome Court",
"medium": "Plaster, pine, mahogany, bronze-gilt, marble, lapis lazuli, steel; wool and silk (22-24 warps per inch, 9-10 per centimeter)",
"object_url": ""
}
},
{
"id": 70582,
"image_url": "https://images.metmuseum.org/CRDImages/as/web-large/DP278411.jpg",
"embedding": [
0.030517578125, -0.035247802734375, 0.323974609375, 0.053680419921875,
-0.07659912109375, -0.1436767578125, 0.073974609375, 0.59033203125,
-0.40234375, -0.2093505859375, -0.078125, 0.1619873046875,
-0.2423095703125, -0.10845947265625, -0.1563720703125, 0.07843017578125,
0.102783203125, -0.18896484375, -0.00484466552734375, 0.32421875,
-0.10400390625, -0.209228515625, 0.349853515625, 0.235595703125,
-0.389892578125, 0.155029296875, -0.324462890625, 0.0010318756103515625,
0.2076416015625, 0.06591796875, -0.01039886474609375, -0.26171875,
-0.06494140625, -0.275634765625, -0.4521484375, -0.79296875,
-0.219482421875, -0.2122802734375, 0.21337890625, -0.07159423828125,
0.1641845703125, -0.0268096923828125, -0.30078125, -0.316650390625,
0.1519775390625, -1.3828125, -0.35302734375, 0.105224609375,
-0.0005736351013183594, -0.258056640625, -0.21435546875,
-0.04168701171875, -0.2052001953125, 0.1502685546875, -0.343017578125,
-0.182373046875, -0.05560302734375, -0.25634765625, 0.1551513671875,
0.00995635986328125, -0.1668701171875, -0.2386474609375, -0.1002197265625,
0.37548828125, -0.0501708984375, -0.396484375, -0.173828125,
-0.351806640625, -0.1978759765625, 0.161865234375, -0.1622314453125,
-0.2418212890625, 0.1689453125, -0.053131103515625, 0.11151123046875,
-0.2476806640625, -0.283447265625, 0.015960693359375, 0.1278076171875,
-0.23486328125, -0.1715087890625, -0.361083984375, -0.2227783203125,
-0.249755859375, -0.033050537109375, 1.0048828125, 0.1728515625,
-0.5380859375, 0.17822265625, 0.012542724609375, -0.160888671875,
0.09832763671875, -7.7421875, 0.93701171875, 0.0179595947265625,
0.67333984375, 0.324462890625, -0.25390625, -0.289794921875,
-0.08306884765625, 0.07147216796875, 0.01190948486328125,
0.12078857421875, -0.1807861328125, -0.349609375, -0.06475830078125,
-1.7275390625, 0.05609130859375, -0.1270751953125, -0.1290283203125,
0.09515380859375, -0.362060546875, 0.166748046875, 0.482177734375,
0.020416259765625, -0.3486328125, 0.48291015625, 0.220947265625,
0.1990966796875, 0.7607421875, 0.1474609375, -0.40576171875, -0.248046875,
0.152587890625, -0.578125, 0.08331298828125, 0.0709228515625,
0.1270751953125, 0.454345703125, -0.10308837890625, 0.01036834716796875,
0.69384765625, -0.342529296875, 0.9453125, 0.96533203125, 0.67822265625,
0.34033203125, -0.25, 0.2705078125, -0.251708984375, -0.2744140625,
0.468505859375, -0.40625, 0.1654052734375, -0.6630859375, -0.190185546875,
0.1085205078125, 0.394287109375, 0.05438232421875, 0.34423828125,
0.05169677734375, -0.166259765625, 0.62109375, 0.288818359375,
-0.173583984375, 0.050018310546875, 0.285400390625, 0.5869140625,
0.351318359375, -0.434326171875, -0.1671142578125, -0.052642822265625,
-0.025482177734375, -0.42529296875, -0.11627197265625, 0.60693359375,
0.40087890625, -0.11749267578125, -0.447509765625, -0.57666015625,
-0.23193359375, 0.055084228515625, -0.465576171875, -0.03515625,
-0.1339111328125, -0.3671875, -0.11102294921875, 0.2291259765625,
0.454833984375, -0.1549072265625, 0.02496337890625, 0.28955078125,
-0.28076171875, -0.72021484375, 0.0244598388671875, -0.2017822265625,
0.3349609375, -0.07623291015625, 0.1591796875, -0.32421875,
-0.01418304443359375, -0.217041015625, 0.48486328125, 0.20556640625,
0.849609375, -0.0792236328125, 0.263671875, -0.2069091796875,
-0.47802734375, -0.192138671875, -0.059783935546875, -0.0250701904296875,
0.037841796875, -0.133056640625, -0.3330078125, -0.208251953125,
0.2457275390625, 0.10723876953125, -0.264892578125, -0.13427734375,
-0.7080078125, 0.982421875, -0.02484130859375, -0.1854248046875,
0.04144287109375, -0.09027099609375, -0.257080078125, 0.149169921875,
-0.359375, 0.17333984375, 0.1942138671875, 0.3515625, -0.54833984375,
-0.2998046875, 0.1119384765625, -0.269775390625, 0.3291015625, -0.3359375,
-0.12078857421875, 0.035247802734375, -0.4951171875, 0.268798828125,
-0.271240234375, 0.08026123046875, -0.2183837890625, -0.06744384765625,
0.1895751953125, -0.3671875, -0.40234375, -0.354248046875, -0.3486328125,
0.05133056640625, 0.295654296875, -0.0232391357421875, -0.140869140625,
-0.99658203125, 0.11041259765625, -0.2335205078125, 0.09552001953125,
-0.08135986328125, -0.02056884765625, -0.7080078125, -0.12359619140625,
0.5146484375, 0.33154296875, -0.321044921875, 0.03765869140625,
-0.056915283203125, -0.057037353515625, -0.04461669921875, -0.13720703125,
0.1240234375, -0.74755859375, -0.60888671875, -0.2763671875, 0.3466796875,
-0.238525390625, -0.431640625, -0.1787109375, 0.09197998046875,
-0.2255859375, 0.0946044921875, 0.25634765625, 0.0113067626953125,
0.21826171875, 0.275146484375, 0.0748291015625, 0.251953125,
-0.20849609375, -0.28466796875, 0.06231689453125, 0.2205810546875,
0.71484375, 0.1802978515625, -0.0100555419921875, 0.169921875,
-0.6376953125, 0.1331787109375, 0.138671875, 0.1552734375,
-0.0972900390625, 0.418701171875, 0.284423828125, -0.13916015625,
0.2724609375, 0.1639404296875, -0.29150390625, 0.1923828125,
0.202392578125, -0.207275390625, -0.01116943359375, -0.23095703125,
-0.1470947265625, -0.037872314453125, 0.11529541015625, -0.14404296875,
0.028778076171875, -0.43994140625, 0.1685791015625, -0.0160369873046875,
-0.0005369186401367188, 0.638671875, 0.9443359375, 0.3544921875,
-0.0112762451171875, 0.53759765625, 0.0452880859375, 0.1785888671875,
0.26806640625, -1.001953125, -0.234619140625, 2.76171875,
-0.0130615234375, 0.204345703125, 0.1888427734375, -0.300537109375,
0.22314453125, 0.055328369140625, -0.041229248046875, 0.31201171875,
-0.35791015625, 0.3134765625, 0.12939453125, -0.412353515625,
0.08001708984375, -0.0377197265625, 0.09283447265625, 0.0845947265625,
0.11077880859375, -0.2958984375, 0.1331787109375, -0.18115234375,
0.0478515625, -0.195556640625, -0.242919921875, 0.268310546875,
0.051788330078125, -0.1400146484375, 0.043853759765625, -0.388916015625,
-0.085205078125, -0.154296875, 0.343017578125, 0.212646484375,
-0.39111328125, 0.1109619140625, 0.199951171875, -0.25244140625,
-0.024658203125, -0.04840087890625, -0.2178955078125, 0.28857421875,
-0.2344970703125, 0.19970703125, -1.189453125, -0.337890625,
0.0755615234375, 0.2071533203125, 0.26025390625, 0.175537109375,
0.0987548828125, -0.2509765625, -0.291748046875, 0.080810546875,
-0.059539794921875, -0.11944580078125, 0.2054443359375, 0.2705078125,
0.97216796875, -0.0281829833984375, 0.06011962890625, -0.2021484375,
-0.350830078125, -0.28173828125, 0.35986328125, 0.364013671875,
0.2430419921875, -0.434814453125, -0.1793212890625, 1.7421875,
-0.1077880859375, 0.69140625, 0.390380859375, -0.326416015625,
-0.28271484375, 0.2333984375, 0.2484130859375, 0.2196044921875,
0.135498046875, -0.343994140625, -0.2010498046875, -0.165771484375,
1.1083984375, -0.40380859375, -0.246826171875, -0.385498046875,
0.50341796875, 0.397705078125, -0.0455322265625, -0.0347900390625,
0.568359375, 0.1265869140625, -0.2548828125, -0.462158203125, 0.0625,
0.03131103515625, -0.0584716796875, -0.47265625, 0.03662109375,
-0.06903076171875, -0.0156707763671875, -0.2415771484375, -0.521484375,
0.1895751953125, 0.14794921875, -0.1949462890625, -0.291259765625,
0.327392578125, 0.253662109375, 0.465087890625, -0.086181640625,
-0.0614013671875, 1.4130859375, -0.0894775390625, 0.2041015625,
-0.002841949462890625, 0.26318359375, -0.266357421875,
-0.0172882080078125, 0.1405029296875, 0.3662109375, -0.07208251953125,
-0.487548828125, -0.0806884765625, 0.03173828125, -0.03350830078125,
0.117919921875, -0.2291259765625, 0.0902099609375, -0.434814453125,
-0.068603515625, 0.040924072265625, -0.26611328125, -0.71044921875,
0.255859375, -0.2232666015625, -0.31640625, -0.0654296875, 0.3291015625,
0.08343505859375, 0.2296142578125, -0.0037593841552734375, -0.29052734375,
-0.0455322265625, 0.334716796875, 0.37841796875, -0.1741943359375,
-0.060516357421875, -0.27392578125, -0.2362060546875, -0.0760498046875,
-0.224609375, 0.413818359375, -0.197998046875, 0.056488037109375,
-0.1561279296875, -0.06915283203125, -0.329833984375, -0.361572265625,
0.65185546875, 0.10589599609375, -0.420654296875, -0.2052001953125,
0.482177734375, -0.07305908203125, 0.38720703125, -0.31884765625,
0.09222412109375, -0.1456298828125, -0.146728515625, -0.26171875,
0.38623046875, -0.040191650390625, -0.437255859375, -0.447998046875,
0.082275390625, 0.1904296875, 0.49365234375, -0.32275390625,
0.0206146240234375, 0.243896484375, -0.036163330078125, 0.39453125,
-0.367431640625, 0.0897216796875, 0.423828125, -0.1937255859375,
0.2186279296875, -0.3466796875, 0.24609375, -0.379150390625,
-0.09259033203125
],
"text_fields": "Dye-Patterned Silk, classified as a Lining. Made of Silk (clamp resist, dyed), created around 17th century during the . Associated with India. Classification: Textiles-Printed. Created by (). Credit: Rogers Fund, 1975. Tags: ",
"metadata": {
"title": "Dye-Patterned Silk",
"medium": "Silk (clamp resist, dyed)",
"object_url": ""
}
},
{
"id": 229601,
"image_url": "https://images.metmuseum.org/CRDImages/es/web-large/DP291865.jpg",
"embedding": [
-0.1810302734375, 0.136474609375, -0.08135986328125, 0.07061767578125,
-0.219970703125, 0.007343292236328125, 0.1895751953125, 0.0904541015625,
-0.482177734375, 0.1318359375, 0.18017578125, -0.0278472900390625,
0.4189453125, -0.038299560546875, -0.255859375, -0.19091796875, -0.59375,
-0.279052734375, -0.0151214599609375, 0.1387939453125, -0.049530029296875,
0.418212890625, 0.0189056396484375, 0.369873046875, 0.35107421875,
0.53369140625, -0.33154296875, 0.0888671875, 0.1844482421875,
0.07220458984375, -0.09991455078125, -0.39013671875, 0.2027587890625,
-0.442626953125, -0.2421875, -0.260986328125, -0.0887451171875,
-0.136474609375, 0.68603515625, 0.38818359375, 0.3232421875,
-0.1259765625, -0.0146331787109375, -0.509765625, 0.171630859375,
-0.30224609375, -0.16845703125, -0.11932373046875, 0.2242431640625,
0.364501953125, -0.086669921875, -0.1517333984375, -0.193359375,
-0.11053466796875, -0.465576171875, -0.24072265625, -0.08770751953125,
0.096435546875, 0.4453125, 0.1683349609375, 0.400146484375, -0.9326171875,
0.2037353515625, 0.350830078125, -0.07000732421875, 0.09661865234375,
-0.3173828125, -0.1129150390625, -0.1380615234375, -0.051483154296875,
-0.394287109375, -0.255126953125, -0.175537109375, 0.1922607421875,
-0.1632080078125, -0.10333251953125, 0.63671875, 0.5361328125,
0.4365234375, 0.1700439453125, -0.0177001953125, -0.1881103515625,
0.21435546875, -0.278076171875, -0.00609588623046875, 0.5830078125,
-1.048828125, 0.05303955078125, -0.3134765625, -0.261474609375,
0.0081329345703125, -0.03839111328125, -5.28515625, 0.61669921875,
0.26513671875, 0.435791015625, 0.1978759765625, 0.327392578125,
0.194580078125, 0.110107421875, 0.17041015625, 0.2283935546875,
-0.3515625, 0.0689697265625, 0.058868408203125, 0.1256103515625,
-2.16796875, 0.0804443359375, -0.5478515625, 0.047119140625,
0.0164337158203125, -0.19775390625, 0.41650390625, 0.56396484375,
0.81884765625, -0.07470703125, -0.1507568359375, 0.126708984375,
0.57421875, 0.36083984375, 0.1588134765625, -0.343994140625,
-0.2296142578125, -0.1934814453125, -0.63720703125, -0.42578125,
-0.1885986328125, 0.430908203125, 0.1751708984375, 0.5498046875,
0.262451171875, -0.390380859375, -0.1964111328125, 0.7255859375,
0.377685546875, -0.458984375, -0.2015380859375, 0.2467041015625,
-0.310791015625, 0.435546875, -0.28125, 0.30322265625, -0.7197265625,
-0.1475830078125, -0.42919921875, -0.52099609375, 0.25537109375,
-0.006702423095703125, -0.1109619140625, 0.4267578125, 0.16845703125,
0.11334228515625, -0.2841796875, 0.422119140625, 0.08319091796875,
-0.055084228515625, -0.1351318359375, -0.18115234375, -0.04168701171875,
-0.059722900390625, -0.2149658203125, 0.25341796875, -0.189697265625,
0.08990478515625, -0.12176513671875, 0.599609375, 0.0733642578125,
0.064208984375, -0.10589599609375, -0.260498046875, -0.28759765625,
-0.000789642333984375, -0.1639404296875, -0.126708984375, 0.259765625,
-0.6240234375, -0.8984375, -0.1678466796875, 0.29931640625,
-0.2152099609375, -0.3388671875, 0.2822265625, 0.1893310546875,
-0.395263671875, 0.215087890625, 0.254638671875, 0.260009765625,
-0.09759521484375, 0.07232666015625, -0.07830810546875, 0.0595703125,
0.26806640625, 0.9150390625, 0.544921875, 0.48974609375, 0.442626953125,
0.06488037109375, -0.09246826171875, -0.432373046875, 0.01335906982421875,
0.4013671875, 0.36328125, 0.04541015625, -0.305908203125, 0.072265625,
0.1976318359375, -0.3076171875, -0.09771728515625, -0.72998046875,
0.1702880859375, -0.568359375, 1.0556640625, 0.03314208984375,
-0.19189453125, 0.3515625, -0.350341796875, -0.142578125,
0.06011962890625, -0.50390625, -0.08050537109375, -0.63232421875,
0.4775390625, -0.1607666015625, -0.274658203125, 0.27734375,
0.01300811767578125, 0.1153564453125, -0.5810546875, -0.3466796875,
-0.01232147216796875, -0.348876953125, 0.257080078125,
-0.0291595458984375, 0.36865234375, -0.0916748046875, 0.08087158203125,
0.28515625, 0.0828857421875, -0.298095703125, -0.336181640625,
-0.06585693359375, 0.040435791015625, 0.208251953125, -0.2275390625,
-0.412353515625, 0.41064453125, -0.10943603515625, -0.1937255859375,
0.260009765625, -0.11663818359375, 0.1446533203125, -0.369384765625,
-0.314453125, 0.054229736328125, 0.1993408203125, 0.39404296875,
-0.207275390625, 0.2108154296875, 0.4814453125, -0.1781005859375,
-0.0028705596923828125, 0.468994140625, -0.541015625, -0.54443359375,
-0.371337890625, 0.288818359375, -0.1104736328125, 0.231689453125,
0.317138671875, 0.1719970703125, -0.1571044921875, 0.437255859375,
0.6357421875, 0.2880859375, -0.03936767578125, 0.134033203125,
0.1136474609375, 0.2095947265625, 0.3564453125, -0.52587890625,
-0.33740234375, 0.381591796875, 0.6435546875, -0.153564453125,
0.17724609375, 0.485107421875, -0.27783203125, 0.22802734375,
-0.1865234375, -0.0127716064453125, 0.337158203125, -0.309326171875,
0.2103271484375, -0.062347412109375, 0.505859375, 0.1522216796875,
0.404052734375, 0.36279296875, 0.66357421875, -0.04791259765625,
-0.70361328125, -0.00926971435546875, -0.018585205078125, -0.254638671875,
0.357177734375, 0.09515380859375, -0.06134033203125, -0.11419677734375,
0.5302734375, -0.02532958984375, -0.06396484375, 0.39697265625,
0.7236328125, 0.2281494140625, 0.41748046875, 0.7548828125,
0.178955078125, -0.0233306884765625, 0.2880859375, -0.296142578125,
-0.26708984375, 2.01171875, -0.2137451171875, -0.31982421875,
0.258056640625, -0.10052490234375, 0.1107177734375, 0.3076171875,
0.1290283203125, -0.381103515625, -0.1788330078125, 0.297119140625,
0.314208984375, -0.158935546875, -0.2095947265625, 0.19091796875,
0.1844482421875, 0.350830078125, -0.09246826171875, -0.43505859375,
-0.0986328125, -0.348876953125, 0.33837890625, -0.24072265625,
0.10986328125, 0.14404296875, 0.2003173828125, 0.208740234375,
-0.229736328125, -0.091796875, 0.343994140625, 0.185546875, 0.5771484375,
0.35546875, -0.46875, -0.0814208984375, 0.0943603515625, -1.2578125,
-0.061309814453125, -0.36328125, -0.130615234375, -0.012359619140625,
-0.0953369140625, 0.1597900390625, -1.2060546875, -0.084228515625,
-0.334228515625, -0.11944580078125, 0.603515625, 0.50244140625,
0.273193359375, -0.3603515625, 0.038421630859375, 0.384033203125, 0.09375,
0.2366943359375, 0.4384765625, -0.1597900390625, 0.80517578125,
-0.297119140625, -0.341064453125, -0.41455078125, 0.023468017578125,
-0.53369140625, 0.01678466796875, 0.33740234375, 0.5146484375,
-0.0299530029296875, -0.274169921875, 1.4423828125, 0.383056640625,
0.73046875, 0.513671875, 0.5380859375, 0.21826171875, -0.06915283203125,
0.307373046875, 0.2137451171875, 0.86669921875, -0.63037109375,
0.2386474609375, -0.30615234375, 0.457763671875, -0.0081634521484375,
0.10028076171875, -0.294921875, -0.061187744140625, 0.398193359375,
0.2249755859375, 0.136474609375, 0.54052734375, -0.11285400390625,
0.33642578125, -0.33154296875, -0.3544921875, -0.1412353515625,
-0.0654296875, 0.00934600830078125, 0.201171875, -0.47021484375,
0.1011962890625, -0.5224609375, -0.0455322265625, 0.485107421875,
0.297607421875, -0.224853515625, 0.097900390625, -0.4599609375,
1.1884765625, 0.5615234375, 0.396484375, 0.4921875, 0.8037109375,
0.04998779296875, 0.4560546875, -0.341064453125, -0.0244140625,
-0.400634765625, 0.307373046875, -0.14111328125, -0.1904296875,
-0.1962890625, -0.149658203125, -0.00272369384765625, 0.14306640625,
-0.142578125, 0.0394287109375, -0.27734375, 0.1822509765625,
0.290771484375, 0.049224853515625, 0.34521484375, 0.242919921875,
0.389892578125, 0.257568359375, -0.26708984375, -0.180419921875,
-0.005290985107421875, 0.1951904296875, 0.044769287109375, 0.37109375,
0.08526611328125, -0.10699462890625, -0.260009765625, 0.51318359375,
0.1524658203125, -0.7529296875, -0.470947265625, -0.01934814453125,
0.169677734375, 0.21923828125, -0.251220703125, 0.05279541015625,
0.1826171875, 0.265625, -0.2342529296875, -5.310773849487305e-5,
-0.2705078125, 0.076416015625, 0.1357421875, -0.047576904296875,
-0.4501953125, -0.266357421875, 0.73486328125, 0.70458984375,
0.64599609375, 0.255615234375, -0.1304931640625, 0.27392578125,
-0.401123046875, 0.0192413330078125, 0.470458984375, -0.15478515625,
-0.5751953125, -0.469970703125, 0.10919189453125, 0.06573486328125,
0.1859130859375, 0.01015472412109375, 0.140380859375,
0.006633758544921875, -0.1884765625, -0.0447998046875, 0.10723876953125,
0.21484375, 0.020965576171875, -0.2578125, 0.0557861328125,
-0.2135009765625, 0.432861328125, -0.028106689453125, 0.0660400390625
],
"text_fields": "The Abduction of Helen from a set of The Story of Troy, classified as a Hanging. Made of Cotton, embroidered with silk and gilt-paper-wrapped thread, pigment, created around ca. 1625 during the . Associated with . Classification: Textiles-Embroidered. Created by Bernard Salomon (French, ca. 1508\u2013ca. 1561). Credit: Gift of Louis E. Seley, 1979. Tags: Soldiers, Men, Helen, Coat of Arms, Ships",
"metadata": {
"title": "The Abduction of Helen from a set of The Story of Troy",
"medium": "Cotton, embroidered with silk and gilt-paper-wrapped thread, pigment",
"object_url": ""
}
},
{
"id": 229285,
"image_url": "https://images.metmuseum.org/CRDImages/es/web-large/DP-21693-022.jpg",
"embedding": [
-0.360107421875, 0.2335205078125, 0.132568359375, 0.2012939453125,
0.124755859375, -0.1319580078125, 0.089599609375, -0.08026123046875,
-0.43310546875, 0.1676025390625, 0.302978515625, -0.228271484375,
0.262939453125, -0.1956787109375, 0.10760498046875, -0.38330078125,
-0.615234375, -0.0257110595703125, -0.2607421875, 0.48486328125,
0.26708984375, 0.728515625, 0.28271484375, 0.369140625, 0.44091796875,
0.386474609375, 0.046142578125, -0.009246826171875, 0.173828125,
0.0849609375, -0.241455078125, -0.2451171875, 0.322509765625,
-0.389404296875, -0.61279296875, -0.07427978515625, 0.033355712890625,
-0.07440185546875, 0.09100341796875, 0.294921875, 0.039031982421875,
-0.08624267578125, 0.0760498046875, -0.3916015625, 0.84619140625,
-0.6220703125, -0.07818603515625, 0.23095703125, 0.45751953125,
0.358642578125, 0.0145416259765625, -0.27734375, -0.00281524658203125,
-0.24609375, -0.179443359375, -0.153564453125, -0.32275390625,
-0.01271820068359375, 0.1409912109375, 0.1646728515625, 0.29296875,
-0.416748046875, 0.290771484375, 0.1846923828125, -0.2252197265625,
-0.2064208984375, -0.29931640625, -0.09722900390625, -0.1429443359375,
-0.077880859375, -0.1219482421875, -0.0191497802734375, -0.295654296875,
-0.166259765625, -0.043792724609375, -0.12420654296875, 0.634765625,
0.214599609375, 0.032867431640625, -0.189697265625, -0.0953369140625,
0.044830322265625, 0.49853515625, -0.2109375, -0.07061767578125,
0.2188720703125, -0.7919921875, -0.11529541015625, -0.306640625,
0.1092529296875, -0.017974853515625, -0.1279296875, -4.9296875, 0.3515625,
0.036956787109375, 0.24365234375, 0.30224609375, -0.12127685546875,
0.61767578125, 0.6455078125, 0.319091796875, 0.023712158203125,
-0.1893310546875, 0.154541015625, 0.269775390625, 0.00807952880859375,
-1.4013671875, 0.14794921875, -0.21728515625, -0.057861328125,
0.0165863037109375, -0.11376953125, 0.10662841796875, 0.238037109375,
0.433349609375, -0.368408203125, 0.134765625, 0.0936279296875,
0.484619140625, 0.107421875, -0.036590576171875, -0.59814453125,